js滚动条停止滚动的判断
作者:
蕉下客_661a | 来源:发表于
2019-05-27 18:56 被阅读0次var topValue = 0,// 上次滚动条到顶部的距离
interval = null;// 定时器
document.onscroll = function() {
if(interval == null)// 未发起时,启动定时器,1秒1执行
interval = setInterval("test()", 1000);
topValue = document.documentElement.scrollTop;
}
function test() {
// 判断此刻到顶部的距离是否和1秒前的距离相等
if(document.documentElement.scrollTop == topValue) {
alert("scroll bar is stopping!");
clearInterval(interval);
interval = null;
}
}
本文标题:js滚动条停止滚动的判断
本文链接:https://www.haomeiwen.com/subject/vldktctx.html
网友评论