防抖(throttle)和节流(debounce)Demo

解决性能问题,以后会常遇到
防抖 throttle 对于短时间内多次触发事件的情况,可以用防抖停止时间持续触发!

   // 防抖  滚轮滚动事件触发案例
        let timer = null;
        window.onscroll = function () {
            if (timer !== null) {
                clearTimeout(timer);
            }
            timer = setTimeout(() => {
                console.log("hello world!");	//-->业务代码
                timer = null;
            }, 500)
        }

节流 debounce 防止短时间内多次触发事件,在间隔时间内,还是需要不断触发!

  //节流	滚轮滚动事件触发案例
        let mark = true;
        window.onscroll = function () {
            if (mark) {
                setTimeout(() => {
                    console.log("hello world!");
                    mark = true;
                }, 500)
            }
            mark = false;
        }

返回顶部效果:

<body>
    <h1>返回页面顶部Demo</h1>
    <button></button>
</body>
<script>

    let btn = document.querySelector("button");
    btn.onclick = function () {
        window.scrollTo(0, 0);
    }

    // let timer = null;
    // window.onscroll = function () {
    //     if (timer !== null) {
    //         clearTimeout(timer);

    //     }
    //     timer = setTimeout(() => {
    //         console.log("计数器");
    //         // 业务功能按钮,显示 button样式!
    //         if (document.documentElement.scrollTop > 100) {
    //             btn.style.display = "block";
    //         } else {
    //             btn.style.display = "none";
    //         }

    //         timer = null;
    //     }, 500)
    // }
    // 利用闭包封装算法
    //节流
    function throttle(fn) {
        let mark = true;
        return function () {
            if (mark) {
                setTimeout(() => {
                    fn();
                    mark = true;
                }, 500)
            }
            mark = false;
        }
    }

// 防抖
    function debounce(fn) {
        let timer = null;
        function eventFun() {

            if (timer !== null) {
                clearTimeout(timer);
            }
            timer = setTimeout(() => {
                //业务代码。
                fn();
                timer = null;
            }, 500)
        }
        return eventFun;
    }
    window.onscroll = debounce(() => {
        console.log("计数器");
        // 业务功能按钮,显示 button样式!
        if (document.documentElement.scrollTop > 100) {
            btn.style.display = "block";
        } else {
            btn.style.display = "none";
        };
    });
</script>

学习自检!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值