Skip to content

Instantly share code, notes, and snippets.

@rememberlenny
Created January 15, 2020 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rememberlenny/6def1b31699275e37c7df7089010fb1b to your computer and use it in GitHub Desktop.
Save rememberlenny/6def1b31699275e37c7df7089010fb1b 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