如何动画切换到HTML中的不同部分?

发布于 2025-01-21 17:16:32 字数 221 浏览 2 评论 0原文

我最近开始为我的网站使用部分,但我讨厌它只是如何将您带到您设置的部分。我在一些网站上看到,当您按下一个按钮将您带到另一个部分时,它会滑下来真正光滑。我一直在Google上搜索,但没有找到我需要的东西。甚至检查了检查元素上的代码,但没有找到与我需要的相关的任何内容。

<p><a href="#haid">
              

I recently started using sections for my website but I hate how it just immidiately just takes you to the section you've set it to go. I've seen on some websites that when you press a button to take you to another section, it slides down going down really smooth. I've been searching on google but didn't find what I need. Even checked the code on inspect element but yet didn't find anything related to what I need.

<p><a href="#haid">????</p>
<p id="haid" class="about text-black text-size-big">How am I doing?</p>

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

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

发布评论

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

评论(1

没有伤那来痛 2025-01-28 17:16:32

您要寻找的效果与CSS

CSS

html {
  scroll-behavior:smooth;
}

来源中的滚动行为有关:
https://developer.mozilla.org.orgg/fr/docs/web/web/web/web/web/web/web/ CSS/卷轴行为

The effect you are looking for is related to scroll behavior in css

CSS

html {
  scroll-behavior:smooth;
}

Source :
https://developer.mozilla.org/fr/docs/Web/CSS/scroll-behavior

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