HermanNygaard / react-scroll-to-top

Lightweight button component for scrolling to the top of a page
https://www.npmjs.com/package/react-scroll-to-top
MIT License
61 stars 12 forks source link

Add optional `smooth` feature #2

Closed mciszczon closed 4 years ago

mciszczon commented 4 years ago

Fixes #1

This PR introduces a new smooth feature, which will scroll to top of the page using a smooth animation.

The feature is opt-in and disabled by default. Internally, it uses window.scrollTo handler. It has fairly good support in browsers, but is unfortunately not supported by Safari yet.

Tested locally on Chrome and Firefox (both latest).

Implemented changes