Skip to content

Instantly share code, notes, and snippets.

@alordiel
Created April 10, 2019 14:33
Show Gist options
  • Save alordiel/d26853ba0348e251f382b5b29f18983b to your computer and use it in GitHub Desktop.
Save alordiel/d26853ba0348e251f382b5b29f18983b to your computer and use it in GitHub Desktop.
Smooth scroll to top
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