yiminghe / dom-scroll-into-view

scroll dom node into view automatically
156 stars 24 forks source link

How to apply easing while it's scrolling #6

Open JasonShin opened 7 years ago

JasonShin commented 7 years ago

Hey, thanks for a great library.

Any idea how to apply easing while it's doing the scroll? Currently, scroll to is happening instantly.

alex84G commented 4 years ago

You can set the easing with CSS on the DIV with the scrollbar e.g.:

.wrapper{ scroll-behavior: smooth; }

raj-aayush commented 2 years ago

I think it would be simpler to make a slight change to the code base to use the following: window.scrollTo({ Top: Y, Left: X, behavior: 'smooth' })