66

一段时间以来,我一直在尝试向我的网站添加平滑滚动功能,但似乎无法使其正常工作。

这是与我的导航相关的 HTML 代码:

<div id="nav-wrapper">
<div id="nav" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="675">
  <div class="navbar-inner" data-spy="affix-top">
    <div class="container">

      <!-- .btn-navbar is used as the toggle for collapsed navbar content -->
      <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </a>

      <!-- Everything you want hidden at 940px or less, place within here -->
      <div class="nav-collapse collapse">
        <ul class="nav">
            <li><a href="#home">Home</a></li>
            <li><a href="#service-top">Services</a></li>
            <li><a href="#contact-arrow">Contact</a></li>
        </ul><!--/.nav-->
      </div><!--/.nav-collapse collapse pull-right-->
    </div><!--/.container-->
  </div><!--/.navbar-inner-->
</div><!--/#nav /.navbar navbar-inverse-->
</div><!--/#nav-wrapper-->

这是我添加的 JS 代码:

<script src="js/jquery.scrollTo-1.4.3.1-min.js"></script>

<script>
    $(document).ready(function(e) {

        $('#nav').scrollSpy()
        $('#nav ul li a').bind('click', function(e) {
            e.preventDefault();
            target = this.hash;
            console.log(target);
            $.scrollTo(target, 1000);
        });
    });
</script>

对于它的价值,这里是我收到关于我到目前为止所做的信息的地方,这里是我当前形式的网站。如果你能帮助我,我会给你烤一个馅饼或饼干之类的。谢谢!

4

8 回答 8

203

你真的需要那个插件吗?您可以为scrollTop属性设置动画:

$("#nav ul li a[href^='#']").on('click', function(e) {

   // prevent default anchor click behavior
   e.preventDefault();

   // store hash
   var hash = this.hash;

   // animate
   $('html, body').animate({
       scrollTop: $(hash).offset().top
     }, 300, function(){

       // when done, add hash to url
       // (default click behaviour)
       window.location.hash = hash;
     });

});

小提琴

于 2013-02-11T02:29:22.933 回答
15

如果你有一个固定的导航栏,你需要这样的东西。

从上述最佳答案和评论中汲取...

$(".bs-js-navbar-scrollspy li a[href^='#']").on('click', function(event) {
  var target = this.hash;

  event.preventDefault();

  var navOffset = $('#navbar').height();

  return $('html, body').animate({
    scrollTop: $(this.hash).offset().top - navOffset
  }, 300, function() {
    return window.history.pushState(null, null, target);
  });
});

首先,为了防止“未定义”错误,target在调用之前将散列存储到变量 ,然后preventDefault()引用该存储的值,如 pupadupa 所述。

下一个。您不能使用window.location.hash = target,因为它同时设置 url 和位置,而不是单独设置。您最终将在 id 与 href 匹配的元素的开头找到该位置...但被您的固定顶部导航栏覆盖。

为了解决这个问题,您将 scrollTop 值设置为目标的垂直滚动位置值减去固定导航栏的高度。直接针对该值保持平滑滚动,而不是事后添加调整,并获得不专业的抖动。

您会注意到 url 没有改变。要设置它,请改用return window.history.pushState(null, null, target);手动将 url 添加到历史堆栈。

完毕!

其他注意事项:

1)使用该.on方法是最新的(截至 2015 年 1 月)比.bindor更好的 jquery 方法.live,或者甚至.click出于我将留给您找出的原因。

2) navOffset 值可以在函数内部或外部,但您可能希望它在外部,因为您很可能会为其他函数/DOM 操作引用该垂直空间。但我把它留在里面,让它整齐地变成一个功能。

于 2015-02-03T06:28:20.900 回答
8
$("#YOUR-BUTTON").on('click', function(e) {
   e.preventDefault();
   $('html, body').animate({
        scrollTop: $("#YOUR-TARGET").offset().top
     }, 300);
});
于 2015-02-24T15:02:00.137 回答
8
// styles.css
html {
    scroll-behavior: smooth
}

来源:https ://www.w3schools.com/howto/howto_css_smooth_scroll.asp#section2

于 2019-07-29T17:44:12.630 回答
4

如果您下载了 jquery easing 插件(检查一下),那么您只需将其添加到您的 main.js 文件中:

$('a.smooth-scroll').on('click', function(event) {
    var $anchor = $(this);
    $('html, body').stop().animate({
        scrollTop: $($anchor.attr('href')).offset().top + 20
    }, 1500, 'easeInOutExpo');
    event.preventDefault();
});

并且不要忘记将平滑滚动类添加到您的 a 标签中,如下所示:

 <li><a href="#about" class="smooth-scroll">About Us</a></li>
于 2016-11-02T16:14:49.857 回答
3

我把它结合起来,这就是结果——

$(document).ready(function() {
     $("#toTop").hide();

            // fade in & out
       $(window).scroll(function () {
                    if ($(this).scrollTop() > 400) {
                        $('#toTop').fadeIn();
                    } else {
                        $('#toTop').fadeOut();
                    }
                });     
  $('a[href*=#]').each(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
    && location.hostname == this.hostname
    && this.hash.replace(/#/,'') ) {
      var $targetId = $(this.hash), $targetAnchor = $('[name=' + this.hash.slice(1) +']');
      var $target = $targetId.length ? $targetId : $targetAnchor.length ? $targetAnchor : false;
       if ($target) {
         var targetOffset = $target.offset().top;
         $(this).click(function() {
           $('html, body').animate({scrollTop: targetOffset}, 400);
           return false;
         });
      }
    }
  });
});

我测试了它,它工作正常。希望这会对某人有所帮助:)

于 2015-06-11T21:39:35.427 回答
0

发布的内容还可以,但是如果onetrickpony您想要更通用的解决方案,则可以使用下面的代码。

id您可以使它更像标准并且只选择 -Tag 的属性name,而不是只选择锚点的属性<a>。这将使您免于编写额外的id标签。只需将 smoothscroll 类添加到导航栏元素即可。

发生了什么变化

1)$('#nav ul li a[href^="#"]')$('#nav.smoothscroll ul li a[href^="#"]')

2)$(this.hash)$('a[name="' + this.hash.replace('#', '') + '"]')

最终代码

/* Enable smooth scrolling on all links with anchors */
$('#nav.smoothscroll ul li a[href^="#"]').on('click', function(e) {

  // prevent default anchor click behavior
  e.preventDefault();

  // store hash
  var hash = this.hash;

  // animate
  $('html, body').animate({
    scrollTop: $('a[name="' + this.hash.replace('#', '') + '"]').offset().top
  }, 300, function(){

    // when done, add hash to url
    // (default click behaviour)
    window.location.hash = hash;

  });
});
于 2014-10-25T20:07:14.163 回答
0

使用此代码,该 ID 不会出现在链接上

    document.querySelectorAll('a[href^="#"]').forEach(anchor => {
        anchor.addEventListener('click', function (e) {
            e.preventDefault();

            document.querySelector(this.getAttribute('href')).scrollIntoView({
                behavior: 'smooth'
            });
        });
    });
于 2020-11-09T07:21:42.213 回答