当前位置:网站首页>节流函数(每隔一段时间就会执行一次)
节流函数(每隔一段时间就会执行一次)
2022-08-04 11:29:00 【要成为光的女人】
function throttle(fn ,delay){
var valid=true
return function(){
if(!valid){ //false 是不会执行
return false //不去执行的直接返回
}
valid=false //默认一进来不会执行,将值赋值为flase
setTimeout(function(){
fn();
valid=true
},delay)
}
}
//使用
//监听窗口滚动事件
window.onscroll=throttle(scrollHandle,3000) //调用这个防抖函数
function scrollHandle(){
var scroolTop=document.documentElement.scrollTo;
}
边栏推荐
- 【目标检测】yolov3特征提取网络------Darknet53网络及pytorch实现
- 使用json-server快速搭建本地数据接口
- ORA-00054 资源正忙
- Zikko launches new Thunderbolt 4 docking station with both HDMI2.1 and 2.5GbE
- 表的完整性约束;非外键约束
- 技术干货 | 用零信任保护代码安全
- audio_policy_configuration.xml配置文件详解
- *SEO*
- God Space - the world's first Web3.0-based art agreement creative platform, broadening the boundaries of multi-art integration
- 知道创宇EDR系统实力通过中国信通院端点检测与响应产品能力评测
猜你喜欢
随机推荐
DQL-查询操作
网管型交换机比傻瓜交换机多了哪些功能
中介者模式(Mediator)
上帝空间——全球首个基于Web3.0的艺术协议创意平台,拓宽多元艺术融合边界
【目标检测】YOLOv4特征提取网络——CSPDarkNet53结构解析及PyTorch实现
win8和win10下,visual studio 2008 调试出现无响应的卡死问题解决
深度学习------戴口罩和不戴口罩
喂,你知道节流是什么吗?
Xilinx VIVADO 中 DDR3(Naive)的使用(3)仿真测试
化繁为简!阿里新产亿级流量系统设计核心原理高级笔记(终极版)
请 AI 画家弄了个 logo,网友热议:画得非常好,下次别画了!
微信公众号之底部菜单
知道创宇EDR系统实力通过中国信通院端点检测与响应产品能力评测
外键约束;外键约束
datax oracle to oracle增量同步
bitset的基本用法
多表查询
asp.net解决大文件断点续传
Leetcode brush - structure binary tree (105. Once upon a time sequence and the sequence structure binary tree traversal sequence, 106. From the sequence with the sequence structure binary tree travers
Leetcode brush questions - binary search tree related topics (98. Verify binary search tree, 235. The nearest common ancestor of binary search tree, 1038. From binary search tree to bigger sum tree, 5