Skip to content

Instantly share code, notes, and snippets.

@okuden-labo
Created March 19, 2015 07:05
Show Gist options
  • Save okuden-labo/06f89fafb87bdd07f8c9 to your computer and use it in GitHub Desktop.
Save okuden-labo/06f89fafb87bdd07f8c9 to your computer and use it in GitHub Desktop.
jQueryでスムーズリンク(2)
/* ページトップへスクロールする */
/* css */
.toTop {
margin-top: 400px;
display: inline-block;
background: #0bd;
padding: 15px;
color: #fff;
cursor: pointer;
}
/* javascript */
$(function(){
$('.toTop').click(function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});
/* html */
<p>ページトップ</p>
<p class="toTop">ページトップへ</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment