scrolltop with animate not working

后端 未结 6 833
梦毁少年i
梦毁少年i 2020-12-01 11:53

I\'m trying to animate while scrolling but no luck with my code...

I have this jquery

$(window).scrollTop(200);

Now wanted to give

6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-01 12:37

    I had this problem as well and realised that the problem was within the CSS.

    In my case, I needed to remove the overflow-x: hidden; from the HTML tag.

    Remove:

    html {
        overflow-x: hidden;
    }
    

    Then, it worked.

    Hope that helps someone!

提交回复
热议问题