Skip to content

Instantly share code, notes, and snippets.

@alarrosa14
Created April 3, 2017 20:13
Show Gist options
  • Save alarrosa14/e9f08a208dfc3beb022039eaba63049c to your computer and use it in GitHub Desktop.
Save alarrosa14/e9f08a208dfc3beb022039eaba63049c to your computer and use it in GitHub Desktop.
60FPS onscroll event listener
(function() {
var lastScrollY = 0;
var ticking = false;
var update = function() {
// do your stuff
ticking = false;
};
var requestTick = function() {
if (!ticking) {
window.requestAnimationFrame(update);
ticking = true;
}
};
var onScroll = function() {
lastScrollY = window.scrollY;
requestTick();
};
$(window).on('scroll', onScroll);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment