锚点位置等于位置减去标题高度

时间:2016-07-02 20:15:05

标签: javascript jquery html css html5

我有固定标题。当我点击锚链接时,它会继续该位置。问题是我的固定标题的高度与该位置重叠。我想当我去一些锚点时,它的位置是=锚 - 标题高度。

这是我的javascript代码:

<script> <!--Anchors-->
$(function() {
  $('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;
      }
    }
  });
});
</script>

1 个答案:

答案 0 :(得分:1)

您可以在页面内容之前添加一些边距

#fixed-header{
    position: fixed;
    height: 100px;
    top: 0;
}
body { 
    margin-top: 100px;
}