Skip to content

Instantly share code, notes, and snippets.

@e200
Last active December 1, 2018 23:29
Show Gist options
  • Save e200/85801663fad2cc88d39ceb4f800a8341 to your computer and use it in GitHub Desktop.
Save e200/85801663fad2cc88d39ceb4f800a8341 to your computer and use it in GitHub Desktop.
Scroll to top function
scrollToTop() {
const scrollPosition = document.documentElement.scrollTop
if (scrollPosition > 0) {
window.requestAnimationFrame(this.scrollToTop)
window.scrollTo(0, scrollPosition - (scrollPosition / 8))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment