Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 05:06
Show Gist options
  • Save nishinoshake/5dd032e5f3459fe65ee1 to your computer and use it in GitHub Desktop.
Save nishinoshake/5dd032e5f3459fe65ee1 to your computer and use it in GitHub Desktop.
ページ内スクロール
;(function() {
$('a[href^=#]').on('click', function() {
var href = $(this).attr("href"),
target = $(href === "#" || href === "" ? 'html' : href),
position = target.offset().top;
$('body,html').animate({scrollTop:position}, 400, 'swing');
return false;
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment