Created
October 22, 2014 09:42
-
-
Save webhasan/254c3c4f3370470b45ac to your computer and use it in GitHub Desktop.
smooth scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function ($) { | |
$(".scroll").click(function (event) { | |
event.preventDefault(); | |
$('html,body').animate({scrollTop: $(this.hash).offset().top}, 1200); | |
}); | |
}); | |
/** | |
* @uses : have to add .scroll | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment