js防抖和节流的理解

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div id="app" style="width:400px;height:400px;border:1px solid red;"></div>
    <script>
        // 鼠标在app元素里面移动 鼠标停止后一秒钟在执行函数 防抖: 事件在设定事件后执行一次,鼠标不停止不执行
        // 可以 鼠标一直移动 看效果
        let app = document.getElementById('app')
        let timer = null
        app.onmousemove = function () {
            if (timer) {
                clearTimeout(timer)  
            }
            timer = setTimeout(() => {
                console.log('防抖函数:鼠标停止移动后一秒钟执行,只执行一次,鼠标一直移动就不会执行') // 等待鼠标 停止移动1秒钟后在执行
                
            }, 1000)
        }

        // 节流: 事件 每隔多长事件 执行一次 窗口尺寸一直在改变不停止 隔一秒钟也会执行节流函数
        // 可以 一直改变窗口尺寸 看效果
        let canrun = true
        window.addEventListener('resize', () => {
            if (canrun == false) return
            canrun = false
            setTimeout(() => {
                canrun = true
                // 执行的代码块
                console.log('节流函数:窗口尺寸改变,每隔一秒钟执行一次节流函数,窗口一直在改变,也会执行')
            }, 1000)
        })
    </script>
</body>
</html>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值