jquery 滚动,无法轻松工作

发布于 2024-10-30 17:29:14 字数 838 浏览 0 评论 0原文

我想制作一个一页网站,其中的 div(导航)位置固定,z 索引为 999。

目标是使 div 保持在顶部,所有其他内容滚动。 我让它正常工作,但是我想通过缓动使其“更加平滑”,但我尝试的一切都会使脚本停止工作。这是工作脚本:

 $(document).ready(function(){  
      $('a[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) {  
            var targetOffset = $target.offset().top;  
            $('html,body')  
            .animate({scrollTop: targetOffset}, 1000) ;  
           return false;  
          }  
        }  
      });  
    });`  

任何人都可以帮助我处理缓动部分吗?我希望滚动快速开始,并在靠近锚点时减慢速度。

提前致谢。

I want to make a one page website with a div (navigation) with fixed position and z-index on 999.

The goal is to make the div stay on top and all the other content scroll.
I got this working properly, however i want to make it "more smooth" with easing, but everything i try makes the script stop working. This is the working script:

 $(document).ready(function(){  
      $('a[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) {  
            var targetOffset = $target.offset().top;  
            $('html,body')  
            .animate({scrollTop: targetOffset}, 1000) ;  
           return false;  
          }  
        }  
      });  
    });`  

Can anyone help me with the easing part? I want the scrolling to start fast and slowing down when it is near the anchor.

thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃酥萝莉 2024-11-06 17:29:14

替换

$('html,body') .animate({scrollTop: targetOffset}, 1000) ;

$('html,body') .animate({scrollTop: targetOffset}, 1000, 'easeOutQuart');

确保您已包含 jQuery UI 核心和 jQuery Effects 核心。

replace

$('html,body') .animate({scrollTop: targetOffset}, 1000) ;

with

$('html,body') .animate({scrollTop: targetOffset}, 1000, 'easeOutQuart');

Make sure you have included jQuery UI core and jQuery Effects core.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文