2 Star 0 Fork 0

jiadeyu/手写代码系列

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
18_debounce.html 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
德帅 提交于 2022-08-22 00:01 . 防抖节流
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge, chrome=1">
<title>debounce(防抖)</title>
<style>
#container{
width: 100%; height: 200px; line-height: 200px; text-align: center; color: #fff; background-color: #444; font-size: 30px;
}
</style>
</head>
<body>
<div id="container"></div>
<!-- 防抖的原理就是:
你尽管触发事件,但是我一定在事件触发 n 秒后才执行,
如果你在一个事件触发的 n 秒内又触发了这个事件,那我就以新的事件的时间为准,n 秒后才执行。
总之,就是要等你触发完事件 n 秒内不再触发事件,我才执行 -->
<script type="module">
import debounce from './js/18_debounce/debounce1.js'
var count = 1;
var container = document.getElementById('container');
function getUserAction(e) {
container.innerHTML = count++;
console.log(e)
};
// container.onmousemove = getUserAction;
container.onmousemove = debounce(getUserAction, 1000, true);
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jiadeyu/handwritten-code-series.git
[email protected]:jiadeyu/handwritten-code-series.git
jiadeyu
handwritten-code-series
手写代码系列
master

搜索帮助