JavaScript
5
Вклад в тег
<script src="path/to/smooth-scroll.polyfills.min.js"></script>или<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll/dist/smooth-scroll.polyfills.min.js"></script><a data-scroll href="#bazinga">Anchor Link</a>
...
<div id="bazinga">Bazinga!</div><script>
var scroll = new SmoothScroll('a[href*="#"]');
</script>var scroll = new SmoothScroll('a[href*="#"]', {
speed: 300
});