parallax scrolling issue - div element jerking when scrolling in webkit browsers

前端 未结 6 901
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-12 19:44

I have created a parallax scroll, which seem to be working fine in firefox however in the chrome browser there\'s a slight jump on the body text when scrolling. click here scrol

6条回答
  •  我在风中等你
    2021-02-12 20:06

    Have you tried adding the preventdefault inside the scroll function?

    $(window).scroll(function(e) {
        e.preventDefault();
        // rest of your code
    }
    

提交回复
热议问题