Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created October 25, 2014 07:42
Show Gist options
  • Save oguzhanaslan/491f5d8995ddd78b20d6 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/491f5d8995ddd78b20d6 to your computer and use it in GitHub Desktop.
Smooth Scrolling
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash;
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment