Skip to content

Instantly share code, notes, and snippets.

@foru17
Created June 25, 2014 08:36
Show Gist options
  • Save foru17/ce5903753391bd566520 to your computer and use it in GitHub Desktop.
Save foru17/ce5903753391bd566520 to your computer and use it in GitHub Desktop.
检测滑动结束
var scrollTimeout = null;
document.addEventListener('scroll',function(event){
clearTimeout(scrollTimeout);
scrollTimeout=setTimeout(function(){
list.newViewedStat();
},100);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment