2016-06-17 14 views
0

次のコードを使用して、自分のサイトのアンカーのスムーズなスクロールを追加します。 私はスティッキーヘッダIDが200pxのスムーススクロールアンカー(オフセット付き)(jquery)

$('a[href*="#"]:not([href="#"])').click(function() { 
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { 
     var target = $(this.hash); 
     target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); 
     if (target.length) { 
      $('html, body').animate({ 
       scrollTop: target.offset().top 
      }, 1000); 
      return false; 
     } 
    } 
}); 

答えて

1

がscrollTopスプライトアニメーションに

$('a[href*="#"]:not([href="#"])').click(function() { 
    var offset = -200; // <-- change the value here 
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { 
     var target = $(this.hash); 
     target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); 
     if (target.length) { 
      $('html, body').animate({ 
       scrollTop: target.offset().top + offset 
      }, 1000); 
      return false; 
     } 
    } 
}); 
を値を追加または削除してくださいと言うことで、これを相殺したいと持っているので
関連する問題