jQuery goToByScroll 偏移量

发布于 2024-11-29 16:57:12 字数 265 浏览 1 评论 0原文

我正在使用 goToByScroll 脚本,我需要它忽略页面的前 40 像素,因为我有固定的导航,导致所有位置 40 像素太低。

这是我的代码:

<script> 
  function goToByScroll(id){
  $('html,body').animate({scrollTop: $("#"+id).offset().top},'500');
  }
</script>

有什么解决方案吗?

I'm using the goToByScroll script and I need it to ignore the first 40px of my page because I have a fixed navigation, resulting in all positions being 40px too low.

Here's my code:

<script> 
  function goToByScroll(id){
  $('html,body').animate({scrollTop: $("#"+id).offset().top},'500');
  }
</script>

Any solutions?

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

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

发布评论

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

评论(3

平安喜乐 2024-12-06 16:57:12

只需在计算偏移时包括 40 像素...

$('html,body').animate({scrollTop: $("#"+id).offset().top - 40},'500');

或者可能是这样的...

$('html,body').animate({scrollTop: $("#"+id).offset().top - $("#nav").height() },'500');

虽然@Praveen 的答案是错误的,但他在其中放置了一个很好的 .stop() 来防止多次射击互相干扰。到这里就全部了...

<script>
  // assuming `#nav` identifies your navigation element...
  function goToByScroll(id){
      $('html,body').stop().animate({scrollTop: $("#"+id).offset().top - $("#nav").height() },'500');
  }
</script>

Just include the 40 pixels when calculating the offset...

$('html,body').animate({scrollTop: $("#"+id).offset().top - 40},'500');

Or maybe something like this...

$('html,body').animate({scrollTop: $("#"+id).offset().top - $("#nav").height() },'500');

And although @Praveen's answer is wrong, he puts a nice .stop() in there to prevent multiple firing from interfering with each other. Here it is alltogether...

<script>
  // assuming `#nav` identifies your navigation element...
  function goToByScroll(id){
      $('html,body').stop().animate({scrollTop: $("#"+id).offset().top - $("#nav").height() },'500');
  }
</script>
挽袖吟 2024-12-06 16:57:12
 $('html, body').stop().animate({ scrollTop: 40 }, 500);
 $('html, body').stop().animate({ scrollTop: 40 }, 500);
眼泪淡了忧伤 2024-12-06 16:57:12
<script> 
  function goToByScroll(id){
    $('html,body').animate({scrollTop: $("#"+id).offset().top + 40},'500');
  }
</script>
<script> 
  function goToByScroll(id){
    $('html,body').animate({scrollTop: $("#"+id).offset().top + 40},'500');
  }
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文