Created
December 9, 2014 02:02
-
-
Save ccwq/0f789810100a5f145ee1 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
//1窗口滚动到某位置的js | |
window.onscroll = document.body.onscroll = function(){ | |
var val = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0; | |
console.log(val); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment