忍者ブログ
28 April

[PR]

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

23 June

アンカーリンクのズレ jquery

有り難いコードをコピペする 例1
https://atelier-light.com/blog/anchor_positioning/#toc3

jQuery(function () {
    var headerHight = 100;
    $('a[href^="#"]').click(function () {
      var href = $(this).attr("href");
      var target = $(href == "#" || href == "" ? "html" : href);
      var position = target.offset().top - headerHight;
      $("html, body").animate({ scrollTop: position }, 550, "swing");
      return false;
    });
  });
  

有り難いコードをコピペする 例2
https://dezanari.com/jquery-anchor-header-fixed/

$(window).on('load', function() {
  let headerHeight = $('.l-header').outerHeight();
  let urlHash = location.hash;
  if (urlHash) {
    let position = $(urlHash).offset().top - headerHeight;
    $('html, body').animate({ scrollTop: position }, 0);
  }
});
PR