Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created December 30, 2016 16:04
Show Gist options
  • Save Farmatique/3d97742109d92c075357db9252226c8e to your computer and use it in GitHub Desktop.
Save Farmatique/3d97742109d92c075357db9252226c8e to your computer and use it in GitHub Desktop.
jQuery scroll up scroll down detector
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