Skip to content

Instantly share code, notes, and snippets.

@ccwq
Created December 9, 2014 02:02
Show Gist options
  • Save ccwq/0f789810100a5f145ee1 to your computer and use it in GitHub Desktop.
Save ccwq/0f789810100a5f145ee1 to your computer and use it in GitHub Desktop.
代码段
//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