huyansheng3 / debounce-throttle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

debounce-throttle

js 中常见的 debounce-throttle 方法的手工实现

window.onscroll = debounce(console.log('XXXX'), 1000)

window.onresize = throttle(console.log('ttt'), 1000)

About


Languages

Language:JavaScript 100.0%