Please tell me how to make smooth scrolling of the entire site. Not on a button, just when you scroll through the entire site, so that it runs smoothly. For example, like on this site:
Scrolling starts fluently and ends a little later, as you stop spinning the scroll wheel. Prefer on pure JS/HTML/CSS.
P.S. html { scroll-behavior: smooth;} - not what I want.
You can add a css prop to your html element
html {
scroll-behavior: smooth;
}