Skip to content

Instantly share code, notes, and snippets.

@rhysburnie
Created May 15, 2014 05:12
Show Gist options
  • Save rhysburnie/c01804f9c09fdaf1272e to your computer and use it in GitHub Desktop.
Save rhysburnie/c01804f9c09fdaf1272e to your computer and use it in GitHub Desktop.
(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