首页 > 其他 > 详细

防抖节流

时间:2020-01-05 12:54:08      阅读:79      评论:0      收藏:0      [点我收藏+]

防抖:

多次连续触发,按最后一次触发事件超过500毫秒执行

let debounce = (fn, wait=500) => {
    let timer
    return function(...args) {
        if (timer) {
            clearTimeout(timer)
        }
        timer = setTimeout(() => {
            fn.apply(this, args)
        },wait)
    }
}    

节流:

按固定时间执行

let throttle = (fn, wait=1500) => {
    let lastTime = 0
    return function (...args) {
        const now = new Date()
        if (now - lastTime > wait) {
            fn.apply(this,args)
            lastTime = now
        }
    }
}    

使用:

window.addEventListener(‘scroll‘, throttle(() => {

    console.log(‘滚动监听‘)

}))

 

防抖节流

原文:https://www.cnblogs.com/zhuangcui/p/12151972.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!