Created
June 14, 2018 10:21
-
-
Save Farmatique/efa7fb2fb9f9a6e8de6e4f15da428f6b to your computer and use it in GitHub Desktop.
Detect direction of scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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