0

我想知道是否有人有一些简单的代码可以获取我的锚链接并在单击时平滑滚动到页面的该部分。现在,每当我点击我的链接时,它基本上都会传送到网页的那个部分而没有任何平滑滚动。任何帮助将不胜感激,谢谢!

PS 我在 CodePen 中执行此操作

4

1 回答 1

1

您可以按照Chris Coyier 的文章和随附的codepen尝试这个 jQuery 脚本:

$(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;
      }
    }
  });
});

请注意 Chris 的 codepen 中的锚标记 href 是如何引用相关的 h2 id 的。

发布您的代码笔,我们可以看看。

于 2016-11-02T22:53:11.647 回答