码迷,mamicode.com
首页 > 其他好文 > 详细

防抖节流

时间:2020-01-05 13:32:35      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:this   out   bsp   time   console   span   return   ret   连续   

防抖:

多次连续触发,按最后一次触发事件超过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(‘滚动监听‘)

}))

 

防抖节流

标签:this   out   bsp   time   console   span   return   ret   连续   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!