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

函数反抖 debounce

时间:2018-12-03 19:51:56      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:timer   deb   let   ons   事件   延时   duration   har   函数   

debounce :
如果在一段延时内又触发了事件,则重新开始延时。即每次触发事件,只触发最近一次的事件。

const debounce = (fn, duration) => {
  let timer = null;
  return () => {
    clearTimeout(timer);
    
    timer = setTimeout(() => {
        fn();
    },duration);
  }
}

  

函数反抖 debounce

标签:timer   deb   let   ons   事件   延时   duration   har   函数   

原文地址:https://www.cnblogs.com/intangible/p/10059970.html

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