scroll to smooth js code example
Example 1: js scrollto
element.scrollTo(x, y);
window.scrollTo(x, y);
element.scrollTo({
top: 100,
left: 100,
behavior: 'smooth'
});
Example 2: how to smooth scroll in javascript
window.scrollTo({ top: 900, behavior: 'smooth' })
Example 3: smooth-scroll.js
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/smooth-scroll/16.1.0/smooth-scroll.min.js"></script>