Skip to content

Instantly share code, notes, and snippets.

@vladanyes
Created May 20, 2018 07:58
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 vladanyes/c71e3d82294f22c5223e62a26288c55b to your computer and use it in GitHub Desktop.
Save vladanyes/c71e3d82294f22c5223e62a26288c55b to your computer and use it in GitHub Desktop.
Scroll direction
var lastScrollTop = 0;
$(window).on('scroll', function() {
st = $(this).scrollTop();
if(st < lastScrollTop) {
console.log('up 1');
}
else {
console.log('down 1');
// getImages();
}
lastScrollTop = st;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment