Skip to content

Instantly share code, notes, and snippets.

@k-ish
Last active June 14, 2019 09:45
Show Gist options
  • Save k-ish/7ec0b0574c4a532fdf7d814b0234b267 to your computer and use it in GitHub Desktop.
Save k-ish/7ec0b0574c4a532fdf7d814b0234b267 to your computer and use it in GitHub Desktop.
トップに戻るボタン
<div id="pagetop"><a href="#">ページの先頭へ</a></div>
#pagetop {
display: none;
position: fixed;
bottom: 15px;
right: 10px;
z-index: 10000;
}
// ページトップボタンを表示
var topBtn = $('#pagetop');
topBtn.hide();
$(window).scroll(function () {
if ($(this).scrollTop() > 300) {
topBtn.fadeIn();
} else {
topBtn.fadeOut();
}
});
topBtn.click(function () {
$('body,html').animate({
scrollTop: 0
}, 500);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment