let t1 = 0;
let t2 = 0;
let timer = null; // 定时器
// scroll监听
document.onscroll = function() {
clearTimeout(timer);
timer = setTimeout(isScrollEnd, 1000);
t1 = document.documentElement.scrollTop || document.body.scrollTop;
}
function isScrollEnd() {
t2 = document.documentElement.scrollTop || document.body.scrollTop;
if(t2 == t1){
console.log('滚动结束了')
}
}
每次滚动的时候都需要清空掉timer定时器,当不滚动的时候才真正的执行到timeout里面的回调函数isScrollEnd,因为您在滚动的时候一直都在清空timer,因此不会执行isScrollEnd函数代码