scrollToTop
Smooth-scrolls to the top of the page.
- Get distance from top using
Document.documentElement
orDocument.body
andElement.scrollTop
. - Scroll by a fraction of the distance from the top.
- Use
Window.requestAnimationFrame()
to animate the scrolling.