Adjust Smooth Scroll Speed
Set the scrolling Anchor speed using Smooth Scroll JS Library.
<!-- Load the Smooth Scroll library -->
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll@15/dist/smooth-scroll.polyfills.min.js"></script>
<!-- Initialize Smooth Scroll -->
<script>
document.addEventListener('DOMContentLoaded', function () {
var scroll = new SmoothScroll('a[href*="#"]', {
speed: 1000
});
});
</script>
Last updated
Was this helpful?

