使用锚点动态包装元素时,平滑滚动也不起作用

时间:2017-04-04 13:54:33

标签: javascript jquery responsive smooth-scrolling

对于移动设备,我想将所有h1标题转换为可以平滑滚动到目标的锚点。要实现这一点,当某个设备调整大小时,我只需用h1标记包装a标记的内容,然后在设备返回时解包a标记的内容到桌面宽度。



$(document).ready(function() {
  // 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
  });
});


//the function to convert the heading to an anchor for devices smaller than 780px
function makeResponsive() {
  if ($(window).width() < 780) {
    if ($('a').length) {
      return true;
    } else {
      $('h1').each(function() {
        $(this).contents().eq(0).wrap('<a href="#section2"></a>');
      });
    }


  } else {
    $('a').contents().unwrap();
  }
}

//run on document load and on window resize
$(document).ready(function() {

  //on load
  makeResponsive()

  //on resize
  $(window).resize(function() {
    makeResponsive();
  });

});
&#13;
body,
html,
.main {
  height: 100%;
}

section {
  min-height: 100%;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h1>
  The Heading
</h1>

<div class="main">
  <section></section>
</div>

<div class="main" id="section2">
  <section style="background-color:blue"></section>
</div>
&#13;
&#13;
&#13;

问题在于,当h1内容转换为锚点时,根本不会发生平滑滚动,并且锚点只会跳转到目标。

2 个答案:

答案 0 :(得分:0)

不要将它包装在锚点中,只需将“mobile-anchor”类添加到这些标题中即可。然后,不要听取锚点击,而是听取'mobile-anchor'的点击并更改:

$('html, body').animate({
        scrollTop: $('#section2').offset().top
}, 800, function() {

甚至更简单的解决方案 - 在点击功能结束之前,添加一个'return false;'所以浏览器不会自动滚动页面。

编辑:此外,将所有内容包装在单个documentReady函数中,并在添加单击侦听器之前执行makeResponsive()。

答案 1 :(得分:0)

你的a-Tag没有得到click事件,因为你在不存在时添加了监听器。

试试这个

$(document).on('click', 'a', function(event) {...