Skip to content

Instantly share code, notes, and snippets.

@jesusaguilera
Last active May 1, 2020 13:57
Show Gist options
  • Select an option

  • Save jesusaguilera/3e5d16352775448c7eae2712530d632c to your computer and use it in GitHub Desktop.

Select an option

Save jesusaguilera/3e5d16352775448c7eae2712530d632c to your computer and use it in GitHub Desktop.
let checkScrollUpDown = () => {
// Get current scroll position
let currentPos = window.pageYOffset || docuemnt.documentElement.scrollTop;
let lastPos = 0;
if(currentPos > lastPos){
// down scroll
}else {
// up scroll
}
lastPos = currentPos;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment