/jquery.smoothscroll.js

jQuery plugin to animate scrolling to anchor links

Primary LanguageJavaScriptMIT LicenseMIT

jquery.smoothscroll.js

GitHub release npm license

jQuery plugin to animate scrolling to anchor links

Downloading or installing via npm

ZIP ZIP

or

$ npm install --save-prod jquery.smoothscroll.js

Loading jQuery and jquery.smoothscroll.js

<script src="https://code.jquery.com/jquery.min.js"></script>
<script src="/path/to/jquery.smoothscroll.min.js"></script>

Webpack or Browserify

global.$ = global.jQuery = require('jquery');
require('jquery.smoothscroll.js');

Usage

$(function() {
  $('a[href*="#"]').smoothscroll();
});

Options and Settings

$('a[href*="#"]').smoothscroll({
  duration: 400,
  easing: 'swing',
  offset: 0,
  hash: true,
  focus: true,
});

Copyright

Kite @ixkaito

License

MIT