节流函数
function throttle(func, wait, options) {
let timeout, context, args, result;
let previous = 0;
if (!options) options = {};
const later = function() {
previous = options.leading === false? 0: Date.now();
timeout = null;
result = func.apply(context, args);
};
const throttled = function() {
let now = Date.now();
if (!previous && options.leading === false) previous = now;
let remaining = wait - (now - previous);
context = this;
args = arguments;
if (remaining <= 0 || remaining > wait) {
if (timeout) {
clearTimeout(timeout);
timeout = null;
}
previous ## 标题= now;
result = func.apply(context, args);
} else if (!timeout && options.trailing !== false) {
timeout = setTimeout(later, remaining);
}
return result;
};
throttled.cancel = function() {
clearTimeout(timeout);
previous = 0;
timeout = context = args = null;
};
return throttled;
}