Skip to content

Instantly share code, notes, and snippets.

@webhasan
Created October 22, 2014 09:42
Show Gist options
  • Save webhasan/254c3c4f3370470b45ac to your computer and use it in GitHub Desktop.
Save webhasan/254c3c4f3370470b45ac to your computer and use it in GitHub Desktop.
smooth scroll
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