Advertisement
deddyprianto

Scroll To Top

Feb 14th, 2022
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Scroll To Top
  2.  
  3. 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.
  4.  
  5. const scrollToTop = (element) =>
  6.   element.scrollIntoView({ behavior: "smooth", block: "start" });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement