jQuery plugin to animate scrolling to anchor links
or
$ npm install --save-prod jquery.smoothscroll.js<script src="jquery.min.js"></script>
<script src="jquery.smoothscroll.min.js"></script>Webpack or Browserify
global.$ = global.jQuery = require('jquery');
require('jquery.smoothscroll.js');$(function() {
$('a[href*="#"]').smoothscroll();
});$('a[href*="#"]').smoothscroll({
duration: 400,
easing: 'swing',
offset: 0,
hash: true,
});Kite @ixkaito
MIT