Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function logScrollDirection() {
  2. var previous = window.scrollY;
  3. window.addEventListener('scroll', function(){
  4. window.scrollY > previous ? console.log('down') : console.log('up');
  5. previous = window.scrollY;
  6. });
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement