ScrollStop滚动事件触发
ScrollStop 是一个 jQuery 插件,当在 Windows 系统上开始滚动和停止滚动的时候,jQuery 会触发两个事件:scrollstart
和 scrollstop。
示例代码:
$(window) .on("scrollstart", function() { // Paint the world yellow when scrolling starts. $(document.body).css({background: "yellow"}); }) .on("scrollstop", function() { // Paint it all green when scrolling stops. $(document.body).css({background: "green"}); })
评论