Created
February 21, 2017 14:10
-
-
Save ozknozsrt/c729b682b504ddeaec687b4a899bb1a9 to your computer and use it in GitHub Desktop.
Scroll Up - Scroll Down
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(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