Skip to content

Instantly share code, notes, and snippets.

@dustintheweb
Created October 13, 2018 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustintheweb/f7e2a747196402c5a52c4f626aa5bc19 to your computer and use it in GitHub Desktop.
Save dustintheweb/f7e2a747196402c5a52c4f626aa5bc19 to your computer and use it in GitHub Desktop.
Scroll Direction Fn
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