Last active
May 1, 2020 13:57
-
-
Save jesusaguilera/3e5d16352775448c7eae2712530d632c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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