Update document, window
This commit is contained in:
@ -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 = () => {
|
||||
|
||||
Reference in New Issue
Block a user