zoukankan      html  css  js  c++  java
  • 防抖和节流函数

      //防抖函数
            function debounce (fn, delay) {
                let timer = null;
                return function () {
                  //接收this,该this当前指向dom元素
                  const that = this;
                  //接收参数
                  const args = arguments;
                  //清除上次定时
                  clearTimeout(timer);
                  //开启定时
                  timer = setTimeout(() => {
                    //改变this指向,并把event传回去
                    fn.apply(that, args);
                  }, delay);
                }
            }


            //节流函数
            function throttle (fn, delay) {
              //定义上次执行时间
              let lastTime = 0;
              return function () {
                //当前时间
                let nowTime = Date.now();
                //小于指定时间就直接return
                if ((nowTime - lastTime) < delay)return;
                fn.apply(this, arguments);
                lastTime = nowTime;
              }
            }

  • 相关阅读:
    Ducking
    MINITAB(二)
    JFreechart
    linux命令0424
    JAVA哈哈镜
    HTML(四)
    The 3n+1 problem
    [转载]:【读书笔记】.NET本质论
    ER图基本步骤
    [从架构到设计]第一回:设计,应该多一点(转载)
  • 原文地址:https://www.cnblogs.com/wangsai-666/p/12038252.html
Copyright © 2011-2022 走看看