Skip to content

Instantly share code, notes, and snippets.

@khripunovpp
Created June 20, 2017 15:09
Show Gist options
  • Save khripunovpp/38a5b5842c28cd5b43014b8f302d4236 to your computer and use it in GitHub Desktop.
Save khripunovpp/38a5b5842c28cd5b43014b8f302d4236 to your computer and use it in GitHub Desktop.
scroll-direction
var scrollPos = 0;
$(window).scroll(function(){
var st = $(this).scrollTop();
if (st > scrollPos){
$('#info').text('DOWN');
} else {
$('#info').text('UP');
}
scrollPos = st;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment