//节流
var timer = null;
// 给页面绑定onscroll事件,该事件为频发事件
document.body.onscroll = function () {
// 根据页面卷动值位置,判断是否触发事件
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
if (scrollTop >= 700) {
clearTimeout(timer);
timer = setTimeout(function () {
console.log("事件发生");
}, 200);
}
}
仅提供一个思维,活学活用最重要