Created
October 13, 2018 18:56
-
-
Save dustintheweb/f7e2a747196402c5a52c4f626aa5bc19 to your computer and use it in GitHub Desktop.
Scroll Direction Fn
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
const main = {}; | |
const updateScroll = () => { | |
main.winScroll = $(window).scrollTop(); | |
if (!main.winScrollMem) { | |
main.winScrollMem = 0; | |
} | |
if (main.winScroll > main.winScrollMem) { | |
main.winScrollDir = 'down'; | |
} else { | |
main.winScrollDir = 'up'; | |
} | |
main.winScrollMem = main.winScroll; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment