0

我想触发 bodymovin [JSON] 的滚动动画,它可以在滚动上控制,即向前和向后。

阿尔弗雷德,需要类似的行为。

欢迎提出建议,我应该如何处理这个 OnScroll 事件?

4

1 回答 1

0

使用 jQuery,您可以绑定到滚动事件,然后测试以查看滚动到页面上的哪个位置。

$(window).scroll(function() {
    //This will be how far down the page the user has scrolled
    var y = $(window).scrollTop();

    //do things here
})
于 2017-07-21T12:43:00.430 回答