获取滚动条滑动的距离


 /**
* @description 获取滚动条滑动的距离
* document.documentElement.scrollTop | document.body.scrollTop
* document.documentElement.scrollLeft | document.body.scrollLeft
* IE8 和 IE8 以下的浏览器不兼容
* window.pageYOffset
* window.pageXOffset
* @returns {x:0,y:0}
*/
function getScrollOffset(){
if(window.pageXOffset){
return {
x: window.pageXOffset,
y:window.pageYOffset
}
}else{
return {
x: document.body.scrollLeft + document.documentElement.scrollLeft,
y: document.body.scrollTop + document.documentElement.scrollTop,
}
}
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM