Skip to content

Instantly share code, notes, and snippets.

@koldovsky
Created November 15, 2016 15:41
Show Gist options
  • Save koldovsky/e096bf63cb0df85ad891b742b96a88bc to your computer and use it in GitHub Desktop.
Save koldovsky/e096bf63cb0df85ad891b742b96a88bc to your computer and use it in GitHub Desktop.
Smooth Scroll
$(function() {
$('.smooth').on('click', function(event) {
var target = $(this.getAttribute('href'));
if (target.length) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 2000);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment