Skip to content

Instantly share code, notes, and snippets.

@MD4
Last active April 27, 2017 11:53
Show Gist options
  • Save MD4/f2ecd8146cee09f9852152d2d81f79f1 to your computer and use it in GitHub Desktop.
Save MD4/f2ecd8146cee09f9852152d2d81f79f1 to your computer and use it in GitHub Desktop.
Really simple smooth scroll to top
const smoothScrollToTop = (element = document.body, interpolationFactor = 1.2) =>
Math.round(element.scrollTop /= interpolationFactor) ?
setTimeout(smoothScrollToTop, 16.666, element) && true : false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment