Last active
December 1, 2018 23:29
-
-
Save e200/85801663fad2cc88d39ceb4f800a8341 to your computer and use it in GitHub Desktop.
Scroll to top function
This file contains 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
scrollToTop() { | |
const scrollPosition = document.documentElement.scrollTop | |
if (scrollPosition > 0) { | |
window.requestAnimationFrame(this.scrollToTop) | |
window.scrollTo(0, scrollPosition - (scrollPosition / 8)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment