Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Scroll To Top
- Beginners very often find themselves struggling with scrolling elements into view properly. The easiest way to scroll elements is to use the scrollIntoView method. Add behavior: "smooth" for a smooth scrolling animation.
- const scrollToTop = (element) =>
- element.scrollIntoView({ behavior: "smooth", block: "start" });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement