-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
参考资料
window.addEventListener("scroll", throttle(() => console.log("我在滚我在滚!")))
function throttle(fn, interval = 500) {
let run = true;
return function () {
if (!run) return;
run = false;
setTimeout(() => {
fn.apply(this, arguments);
run = true;
}, interval);
};
}Reactions are currently unavailable