您的位置:首页 > 财经 > 金融 > wap浏览器免费下载_2024疫情已经到来了_如何建立网页_每日精选12条新闻

wap浏览器免费下载_2024疫情已经到来了_如何建立网页_每日精选12条新闻

2024/11/17 23:41:03 来源:https://blog.csdn.net/m0_73557953/article/details/143646506  浏览:    关键词:wap浏览器免费下载_2024疫情已经到来了_如何建立网页_每日精选12条新闻
wap浏览器免费下载_2024疫情已经到来了_如何建立网页_每日精选12条新闻

防抖:单位时间内,频繁触发事件,只执行最后一次

防抖实现方式:

  • lodash提供的防抖函数_.debounce(func,[wait=0],[option=])

延迟wait毫秒后调用func方法

  • 定时器setTimeout

目标:鼠标在盒子上移动,鼠标停止500ms之后,里面的数字才会变化+1

_.debounce函数

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>.box {width: 500px;height: 500px;background-color: #ccc;color: #fff;text-align: center;font-size: 100px;}</style>
</head><body><div class="box"></div><script src="lodash.min.js"></script><script>const box = document.querySelector('.box')let i = 1  // 让这个变量++// 鼠标移动函数function mouseMove() {box.innerHTML = i++}//语法:_.debounce(fun,时间)box.addEventListener('mousemove', _.debounce(mouseMove, 500))</script>
</body></html>

定时器(底层)

思路:

  • 先声明一个定时器变量
  • 每次鼠标移动(事件触发)的时候都要先判断是否有定时器,如果有就先清除以前的定时器

  • 如果没有定时器则开启定时器,记得存到变量里面
  • 在定时器里面调用要执行的函数 
<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>.box {width: 500px;height: 500px;background-color: #ccc;color: #fff;text-align: center;font-size: 100px;}</style>
</head><body><div class="box"></div><script src="lodash.min.js"></script><script>const box = document.querySelector('.box')let i = 1  // 让这个变量++// 鼠标移动函数function mouseMove() {box.innerHTML = i++}// box.addEventListener('mousemove', _.debounce(mouseMove, 500))function debounce(fn,t){//1.let timer//return 返回一个匿名函数return function(){//2.3.4if(timer) clearTimeout(timer)timer = setTimeout(function(){//在定时器里执行要执行的函数mouseMove()fn()}, t)}}// 为什么返回一个匿名函数?// debounce(mouseMove, 500)单写这个是函数调用;只执行一次// debounce(mouseMove, 500) 接收 function(){2,3,4}// 就相当于box.addEventListener('mousemove',function(){2,3,4})box.addEventListener('mousemove',debounce(mouseMove, 500))</script>
</body></html>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com