当前位置:网站首页>JS anti shake and throttling
JS anti shake and throttling
2022-07-01 02:24:00 【kilito_ 01】
/ Throttling function
function throttle(callback, wait) {
let start = 0 ;
return function(e){
let now = Date.now()
if(now - start >= wait){
callback.call(this,e);
start = now;
}
}
}
// Anti shake function
function debounce(callback,time){
var timeout = null;
return function(e){
if(timeout != null){
clearTimeout(timeout)
}
// Start timer
timeout = setTimeout(()=>{
callback.call(this,e)
timeout = null;
},time)
}
}
边栏推荐
- Electron pit Addon
- Small program cloud development -- wechat official account article collection
- SWT / anr problem - anr/je causes SWT
- SWT / anr problem - SWT caused by too long dump time
- Static domain and static method
- How to learn and read code
- Windows quick add boot entry
- Alphabet rearrange inator 3000 (dictionary tree custom sorting)
- What are the preferential activities for stock account opening? In addition, is it safe to open a mobile account?
- SWT / anr problem - SWT caused by long execution time of native method
猜你喜欢

Int and bit group turn to each other

Go import self built package
2022年最新csdn涨薪技术栈-app自动化测试概述

【JS】【掘金】获取关注了里不在关注者里的人

House change for agricultural products? "Disguised" house purchase subsidy!

聚焦绿色低碳,数据中心散热进入“智能冷却”新时代

视觉特效,图片转成漫画功能

(总结一)Halcon基础之寻找目标特征+转正

How does ZABBIX configure alarm SMS? (alert SMS notification setting process)

FL Studio20.9水果软件高级中文版电音编曲
随机推荐
SWT/ANR问题--Dump时间过长导致的SWT
How does the property send a text message to the owner?
Leetcode 面试题 17.10. 主要元素
[fundamentals of wireless communication-15]: illustrated mobile communication technology and application development-3-overview of digital communication 2G GSM, CDMA, 3G wdcma/cdma200/td-scdma, 4G LTE
pycharm 软件deployment 灰色 无法点
SWT/ANR问题--ANR/JE引发SWT
MySQL insert \ pre update + judgment condition
我的PMP学习考试心得
5款主流智能音箱入门款测评:苹果小米华为天猫小度,谁的表现更胜一筹?
集群方法同步执行框架 Suona
@ConfigurationProperties和@Value的区别
How do the top ten securities firms open accounts? Also, is it safe to open an account online?
手机上怎么开户?还有,在线开户安全么?
P6773 [noi2020] destiny (DP, segment tree merging)
Alphabet rearrange inator 3000 (dictionary tree custom sorting)
Is there any discount for opening an account now? In addition, is it safe to open a mobile account?
(summary I) Halcon Foundation's target finding features + becoming a regular
go导入自建包
十大劵商如何开户?还有,在线开户安全么?
How does ZABBIX configure alarm SMS? (alert SMS notification setting process)