Created
June 25, 2014 08:36
-
-
Save foru17/ce5903753391bd566520 to your computer and use it in GitHub Desktop.
检测滑动结束
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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