Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想触发 bodymovin [JSON] 的滚动动画,它可以在滚动上控制,即向前和向后。
阿尔弗雷德,需要类似的行为。
欢迎提出建议,我应该如何处理这个 OnScroll 事件?
使用 jQuery,您可以绑定到滚动事件,然后测试以查看滚动到页面上的哪个位置。
$(window).scroll(function() { //This will be how far down the page the user has scrolled var y = $(window).scrollTop(); //do things here })