Вы можете использовать css для этого:
html {
scroll-behavior: smooth;
}
Но, опять же, поддержка браузером не так уж и велика .
Есть и другие методы хотя. Просто прочитайте эту страницу для большого обзора: https://css-tricks.com/snippets/jquery/smooth-scrolling/
// Scroll to specific values
// scrollTo is the same
window.scroll({
top: 2500,
left: 0,
behavior: 'smooth'
});
// Scroll certain amounts from current position
window.scrollBy({
top: 100, // could be negative value
left: 0,
behavior: 'smooth'
});
// Scroll to a certain element
document.querySelector('.hello').scrollIntoView({
behavior: 'smooth'
});