Skip to content

Instantly share code, notes, and snippets.

@codeepic
Last active December 10, 2018 17:00
Show Gist options
  • Save codeepic/3c973779f7b18648cd421d43ecab5c56 to your computer and use it in GitHub Desktop.
Save codeepic/3c973779f7b18648cd421d43ecab5c56 to your computer and use it in GitHub Desktop.
Scroll to top (smooth)
// https://stackoverflow.com/questions/15935318/smooth-scroll-to-top
// based on Gor answer
const scrollToTop = () => {
const c = document.documentElement.scrollTop || document.body.scrollTop;
if (c > 0) {
window.requestAnimationFrame(scrollToTop);
window.scrollTo(0, c - c / 8);
}
};
scrollToTop();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment