Skip to content

Instantly share code, notes, and snippets.

@griiettner
Last active November 1, 2017 14:23
Show Gist options
  • Save griiettner/6798961 to your computer and use it in GitHub Desktop.
Save griiettner/6798961 to your computer and use it in GitHub Desktop.
Bootstrap Smooth Scroll to Anchor
!function ($) {
$(function(){
$('#home, #me, #footer').carousel({});
var $root = $('html, body');
$('a').click(function() {
var href = $.attr(this, 'href');
$root.animate({
scrollTop: $(href).offset().top
}, 500, function () {
window.location.hash = href;
});
return false;
});
})
}(window.jQuery)
@BootstrapTema
Copy link

stop margin-top 100px ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment