滚动动画无法正常工作;当我单击链接时,我被定向但没有动画

scroll animation not working properly; when i click the link i get directed but with no animation

本文关键字:动画 链接 单击 常工作 工作 滚动      更新时间:2023-09-26

平滑滚动不起作用?? 当我单击链接滚动到元素/部分时,它直接将我带到它 即使将动画速度更改为 5000 也无法流畅滚动。 我的脚本是正确的,所以我不知道该怎么办

这是我下面的代码; 对于查询,我已经用"#"标签正确标记了我的链接,并为每个元素正确创建了一个 ID

    $(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
        }, 5000);
        return false;
      }
    }
  });
});
 $(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;
}}
});
});