html 创建到任何目标的平滑滚动。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 创建到任何目标的平滑滚动。相关的知识,希望对你有一定的参考价值。

$(function() {
  // Smooth Scrolling
  $('.smooth-scroll').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;
      }
    }
  });
});
<a href="#target" class="smooth-scroll">Click Me</a>

<div id="target">to scroll to here.</div>

以上是关于html 创建到任何目标的平滑滚动。的主要内容,如果未能解决你的问题,请参考以下文章

使用Scroller实现View的平滑滚动

使用jquery animate创建平滑滚动效果

平滑滚动到任何ID

单击锚链接时如何实现平滑滚动到不同页面上的部分?

html 平滑滚动到页面的不同部分的链接

html 平滑滚动到 - 带偏移