🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

An easy and lightweight jQuery smooth scroll plugin which makes the internal anchors smoothly scroll the web page to a particular DIV (or any other point) within the document.

scroll-to smooth-scroll

Documentation

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


You May Also Like