Saber2pr's Blog

节流防抖

节流

const throttle = (callback, delta = 500, id = "default") => {
  const next = () => {
    throttle[id] = Date.now() + delta
  }
  throttle[id] || next()
  if (Date.now() > throttle[id]) {
    next()
    callback()
  }
}

防抖

const debounce = (callback, delta = 300, id = "default") => {
  clearTimeout(debounce[id])
  debounce[id] = setTimeout(callback, delta)
}