Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

第 102 期(内功-性能):节流 #105

Open
wingmeng opened this issue Sep 4, 2019 · 0 comments
Open

第 102 期(内功-性能):节流 #105

wingmeng opened this issue Sep 4, 2019 · 0 comments

Comments

@wingmeng
Copy link
Collaborator

wingmeng commented Sep 4, 2019

节流是一种常用的性能优化手段,主要原理是:当持续触发事件时,对事件响应进行抽稀,保证一定时间段内只调用一次事件处理函数。

节流函数:

function throttle(fn, wait) {
  var prev = 0;
  wait = wait || 1000;

  return function() {
    var now = Date.now();

    if (now - prev > wait) {
      fn.apply(this, arguments);
      prev = now;
    }
  }
}

应用举例:

window.addEventListener('mousemove', throttle(function() {
  console.log(Date.now())
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant