I\'m trying to animate while scrolling but no luck with my code...
I have this jquery
$(window).scrollTop(200);
Now wanted to give
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!