在中间位置的部分之间停止平滑滚动

Stop Smooth Scroll between Sections in a Middle Position

我有以下结构化代码。我的页面中有粘性 header 以及几个部分。我这里的页面 hyperlink 很少。

正如您在代码片段中看到的,第 1 节到第 2 节 中有一个 link 文本。

我从 w3school 添加了一些 jquery 以便平滑滚动。


问题

当点击 hyperlink 时,它会滚动到第 2 部分并将第 2 部分的起点带到 body 的顶部。因为我有一个粘性 header 它隐藏了第 2 部分的一些内容。

现在我想要的是: 当滚动到第 2 部分时,我希望该部分在粘性 header 之后开始,而不是从 body.

的顶部开始

// Add smooth scrolling to all links
$("a").on('click', function(event) {

  // Make sure this.hash has a value before overriding default behavior
  if (this.hash !== "") {
    // Prevent default anchor click behavior
    event.preventDefault();

    // Store hash
    var hash = this.hash;

    // Using jQuery's animate() method to add smooth page scroll
    // The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
    $('html, body').animate({
      scrollTop: $(hash).offset().top
    }, 800, function() {

      // Add hash (#) to URL when done scrolling (default click behavior)
      window.location.hash = hash;
    });
  } // End if
});
header {
  background: red;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#sec-1,
#sec-2 {
  width: 100%;
  height: 100vh;
}

#sec-1 {
  margin-top: 50px;
  background: green;
}

#sec-2 {
  background: blue;
}

#sec-2>p {
  background: #fff;
  margin: auto;
  width: 60%;
  height: 100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<header></header>

<section id="sec-1">
  <a href="#sec-2">Scroll to section 2</a>
</section>
<section id="sec-2">
  <p>This is section 2</p>
</section>

您需要从滚动中删除 header 的高度;

$('html, body').animate({
  scrollTop: $(hash).offset().top - $('header').height()
}, 800, function() {

  // Add hash (#) to URL when done scrolling (default click behavior)
  window.location.hash = hash;
});

您的问题是 javascript 中的最后一行。

/ Add hash (#) to URL when done scrolling (default click behavior) window.location.hash = hash;

这实际上会强制您的 URL 跳转到原始哈希位置。您实际上并没有添加 #,而是强制 window 跳转到 javascript 变量 hash 中定义的原始位置,在本例中为 section-2

// Add smooth scrolling to all links
$("a").on('click', function(event) {

  // Make sure this.hash has a value before overriding default behavior
  if (this.hash !== "") {
    // Prevent default anchor click behavior
    event.preventDefault();

    // Store hash
    var hash = this.hash;

    // Using jQuery's animate() method to add smooth page scroll
    // The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
    $('html, body').animate({
      scrollTop: $(hash).offset().top -70
    }, 800, function() {

    });
  } // End if
});

卷轴现在可以正常工作了。

https://jsfiddle.net/exuj6mro/18/

首先,您需要从动画块中的 scrollTop 偏移中减去页眉的高度。

其次,当您使用 window.location.hash 时,它引起了实际的麻烦,当 window.location.hash 被触发时,页面再次滚动以获取超链接(与超链接的传统行为一样)。波纹管代码按预期工作,希望它能解决您的问题。

// Add smooth scrolling to all links
$("a").on('click', function(event) {

  // Make sure this.hash has a value before overriding default behavior
  if (this.hash !== "") {
    // Prevent default anchor click behavior
    event.preventDefault();

    // Store hash
    var hash = this.hash;

    // Using jQuery's animate() method to add smooth page scroll
    // The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
    $('html, body').animate({
      scrollTop: parseInt($(hash).offset().top - parseInt($('header').height()))
    }, 800, function() {

      // Add hash (#) to URL when done scrolling (default click behavior)
      // window.location.hash = hash;
    });
  } // End if
});
header {
  background: red;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#sec-1,
#sec-2 {
  width: 100%;
  height: 100vh;
}

#sec-1 {
  margin-top: 50px;
  background: green;
}

#sec-2 {
  background: blue;
}

#sec-2>p {
  background: #fff;
  margin: auto;
  width: 60%;
  height: 100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<header></header>

<section id="sec-1">
  <a href="#sec-2">Scroll to section 2</a>
</section>
<section id="sec-2">
  <p>This is section 2</p>
</section>