14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
|
|
// 防抖函数
|
||
|
|
export function resizeHandler(htGv) {
|
||
|
|
let timer = null;
|
||
|
|
return () => {
|
||
|
|
if (timer) {
|
||
|
|
window.clearTimeout(timer);
|
||
|
|
};
|
||
|
|
timer = window.setTimeout(() => {
|
||
|
|
if(htGv){
|
||
|
|
htGv.iv();
|
||
|
|
}
|
||
|
|
}, 1000);
|
||
|
|
};
|
||
|
|
}
|