次のコードを使用して、ユーザーがhref
「#」で始まるリンクをクリックしたときの動きを滑らかにしています
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});
scrollTop 値に約 40px を追加する必要があるため、停止ポイントがコンテンツをカバーしません。コードをこれに変更しましたが、それを実行していないようです (コードの末尾に向かって +40 があることに注意してください)。
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top + 40
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});