ヘッダー固定のサイトで、別ページへのアンカーリンク位置がずれる問題の解決方法 | コドノワ

PHOTO EMBED

Thu Jun 10 2021 20:48:47 GMT+0000 (Coordinated Universal Time)

Saved by @pituitarybody

$(window).on('load', function() {
var url = $(location).attr('href');
if(url.indexOf("#") != -1){
var anchor = url.split("#");
var target = $('#' + anchor[anchor.length - 1]);
if(target.length){
var pos = Math.floor(target.offset().top) - 120;
$("html, body").animate({scrollTop:pos}, 500);
}
}
});
content_copyCOPY

https://codenowa.com/web-production/position-fixed/