Created
April 10, 2019 14:33
-
-
Save alordiel/d26853ba0348e251f382b5b29f18983b to your computer and use it in GitHub Desktop.
Smooth scroll to top
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
const scrollToTop = () => { | |
const c = document.documentElement.scrollTop || document.body.scrollTop; | |
if (c > 0) { | |
window.requestAnimationFrame(scrollToTop); | |
window.scrollTo(0, c - c / 8); | |
} | |
}; | |
scrollToTop(); | |
// https://stackoverflow.com/questions/15935318/smooth-scroll-to-top |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment