Update document, window

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-20 11:46:23 +03:00
parent 5c344ae3e3
commit 52880f08ee
14 changed files with 16 additions and 16 deletions

View File

@ -5,9 +5,9 @@ tags: browser,intermediate
Smooth-scrolls to the top of the page.
- Get distance from top using `document.documentElement.scrollTop` or `document.body.scrollTop`.
- Get distance from top using `Document.documentElement` or `Document.body` and `Element.scrollTop`.
- Scroll by a fraction of the distance from the top.
- Use `window.requestAnimationFrame()` to animate the scrolling.
- Use `Window.requestAnimationFrame()` to animate the scrolling.
```js
const scrollToTop = () => {