Skip to content

Instantly share code, notes, and snippets.

@iceener
Created July 3, 2020 13:33
Show Gist options
  • Save iceener/b7a18c1342343fdf51f6390c2b45ff6e to your computer and use it in GitHub Desktop.
Save iceener/b7a18c1342343fdf51f6390c2b45ff6e to your computer and use it in GitHub Desktop.
// Smooth scroll to top
const scrollTop = () => {
const currentPosition = document.documentElement.scrollTop || document.body.scrollTop;
if (currentPosition > 0) {
window.requestAnimationFrame(scrollTop);
window.scrollTo(0, currentPosition - currentPosition / 8);
}
};
scrollTop();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment