Skip to content

Instantly share code, notes, and snippets.

@Shwartz
Created January 10, 2017 16:05
Show Gist options
  • Save Shwartz/1e7cd58510cd7bf7e566132c38317b7f to your computer and use it in GitHub Desktop.
Save Shwartz/1e7cd58510cd7bf7e566132c38317b7f to your computer and use it in GitHub Desktop.
addEventListner with requestAnimationFrame
(function() {
"use strict";
var ticking = false;
window.addEventListener('scroll', function () {
if (!ticking) {
window.requestAnimationFrame(function () {
runYourMethod();
ticking = false;
});
}
ticking = true;
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment