Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 645 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 645 Bytes

Smooth Scrolling jQuery Plugin

Demo & Examples

http://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