How to make the site scroll smoothly with the mouse?

Viewed 30

I found a smooth scrolling site. All elements move very smoothly. I googled for a long time, but did not even find a similar example. Any ideas how this can be repeated? https://www.sweetpunk.com/en/

2 Answers

There is a css property that's does something similar

*{
scroll-behaviour:smooth;
}
Related