Skip to content

Instantly share code, notes, and snippets.

@victorpavlov
Created December 1, 2015 11:26
Show Gist options
  • Save victorpavlov/71dfadc732ed7a6f2c8f to your computer and use it in GitHub Desktop.
Save victorpavlov/71dfadc732ed7a6f2c8f to your computer and use it in GitHub Desktop.
var lastScrollTop = 0;
$(window).scroll(function(event){
var st = $(this).scrollTop();
if (st > lastScrollTop){
// downscroll code
} else {
// upscroll code
}
lastScrollTop = st;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment