Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/efa7fb2fb9f9a6e8de6e4f15da428f6b to your computer and use it in GitHub Desktop.
Save Farmatique/efa7fb2fb9f9a6e8de6e4f15da428f6b to your computer and use it in GitHub Desktop.
Detect direction of scroll
var lastScrollTop = 0;
$(window).scroll(function(){
var scrollTop = window.pageYOffset;
if(scrollTop > lastScrollTop){
console.log('down')
} else {
console.log('up')
}
lastScrollTop = scrollTop <= 0 ? 0 : scrollTop;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment