当html和body height为100%时,Smooth Scrolling不起作用

时间:2018-04-16 08:46:00

标签: javascript jquery html css

这是我的索引页面的CSS

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

这是我流畅的滚动脚本

layer

并且我的主要内容是在wrap id和header之外的wrap id

0 个答案:

没有答案