Last active
May 29, 2016 05:06
-
-
Save nishinoshake/5dd032e5f3459fe65ee1 to your computer and use it in GitHub Desktop.
ページ内スクロール
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(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