javascript检测滚动距离
2018-03-14 本文已影响6人
守鶴yuan
window.onscroll =function () {
var t = document.documentElement.scrollTop || document.body.scrollTop;
//t即滚动的距离
if ( t > 27 ) {
} else if ( t == 0) {
}
}
window.onscroll =function () {
var t = document.documentElement.scrollTop || document.body.scrollTop;
//t即滚动的距离
if ( t > 27 ) {
} else if ( t == 0) {
}
}