您可以使
scroll()每次用户滚动时都有一个超时被覆盖。这样,当他在一定毫秒后停止运行时,您的脚本将运行,但是如果他在此期间滚动,则计数器将重新开始,并且脚本将等待直到完成滚动为止。
更新:
因为这个问题又采取了一些行动,所以我认为我不妨使用添加
scrollEnd事件的jQuery扩展对其进行更新。
// extension:$.fn.scrollEnd = function(callback, timeout) { $(this).scroll(function(){ var $this = $(this); if ($this.data('scrollTimeout')) { clearTimeout($this.data('scrollTimeout')); } $this.data('scrollTimeout', setTimeout(callback,timeout)); });};// how to call it (with a 1000ms timeout):$(window).scrollEnd(function(){ alert('stopped scrolling');}, 1000);<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><div > Long div</div>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)