Skip to content

Instantly share code, notes, and snippets.

@okuden-labo
Last active August 29, 2015 14:17
Show Gist options
  • Save okuden-labo/722f96ac9eda086d2194 to your computer and use it in GitHub Desktop.
Save okuden-labo/722f96ac9eda086d2194 to your computer and use it in GitHub Desktop.
jQueryでスムーズリンク(1)
/* ページ内リンクをスムーズに移動させます。 */
$(document).ready(function() {
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target
|| $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body')
.animate({scrollTop: targetOffset}, 900);
return false;
}
}
});
});
// スクロール先を指定
<a id="top" name="top"></a>
// リンクを設置します。
<a href="#top">go to top</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment