美文网首页
前端节流

前端节流

作者: Devin_tao | 来源:发表于2019-11-13 14:50 被阅读0次

    前端节流(规定时间内只出发一次,规定时间内再次触发则无效)

            // 节流
            function throttle (fn , delay) {
                var prev = Date.now();
                return function () {
                    var now = Date.now();
                    if (now - prev >= delay) {
                        fn.apply(this, arguments);
                        prev = Date.now();
                    }
                }
            }
    
            function foo() {
                console.log(1);
            }
    
            addEventListener('scroll', throttle(foo, 1000));
    

    相关文章

      网友评论

          本文标题:前端节流

          本文链接:https://www.haomeiwen.com/subject/fzwhictx.html