Skip to content

Instantly share code, notes, and snippets.

@ozknozsrt
Created February 21, 2017 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozknozsrt/c729b682b504ddeaec687b4a899bb1a9 to your computer and use it in GitHub Desktop.
Save ozknozsrt/c729b682b504ddeaec687b4a899bb1a9 to your computer and use it in GitHub Desktop.
Scroll Up - Scroll Down
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