import { throttle } from 't-comm'; // or import { throttle} from 't-comm/lib/throttle/index';
throttle(fn, time)
描述:
节流
连续触发事件但是在 n 秒中只执行一次函数
参数:
function
主函数
number
间隔时间,单位 ms
ms
返回:
闭包函数
示例
function count() { console.log('xxxxx') } window.onscroll = throttle(count, 500)
← tgit time →