Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 711 Bytes

README.md

File metadata and controls

35 lines (21 loc) · 711 Bytes

Smooth Scrolling jQuery Plugin

Notice

Nowadays you should really use scroll-behavior: smooth; in CSS instead of a JavaScript solution.

Demo & Examples

https://mathiasbynens.be/demo/smooth-scrolling

Example Usage

Simple – Inside entire document

Find all links to anchors in the same document, and make them scroll smoothly when clicked:

$('html').smoothScroll();

Simple – Inside a specified element

Find all links to anchors in the same document inside #content, and make them scroll smoothly when clicked:

$('#content').smoothScroll();

Specifying animation speed

$('html').smoothScroll(300);

Mathias