<p id="scroll-top"><a href="#">^</a></p>
$('#scroll-top').on("click",function(event) {
event.preventDefault(); // ページ内リンクの挙動をキャンセル
$('body,html').animate({ // スムーズにスクロールする設定
scrollTop: 0
}, 500);
});
<p id="scroll-top"><a href="#">^</a></p>
$('#scroll-top').on("click",function(event) {
event.preventDefault(); // ページ内リンクの挙動をキャンセル
$('body,html').animate({ // スムーズにスクロールする設定
scrollTop: 0
}, 500);
});
コメント