laudor / jquery.smoothscroll.js

jQuery plugin to animate scrolling to anchor links

Home Page:https://www.npmjs.com/package/jquery.smoothscroll.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

jQuery plugin to animate scrolling to anchor links

https://www.npmjs.com/package/jquery.smoothscroll.js

License:MIT License


Languages

Language:JavaScript 100.0%