Skip to content

Instantly share code, notes, and snippets.

@andrit
Created December 14, 2018 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrit/e243cd9cbfc5efbecff069e5ab50600d to your computer and use it in GitHub Desktop.
Save andrit/e243cd9cbfc5efbecff069e5ab50600d to your computer and use it in GitHub Desktop.
export const scrollToTop = () => {
  const c = document.documentElement.scrollTop || document.body.scrollTop;
  if (c > 0) {
    window.requestAnimationFrame(scrollToTop);
    window.scrollTo(0, c - c / 8);
  }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment