类似 Facebook 的锚滚动

发布于 2024-08-02 04:59:51 字数 207 浏览 1 评论 0原文

Facebook 有一个很好的滚动效果,我想用 jQuery 复制它。当您加载页面时,它从顶部开始,然后滚动到选定的锚点。

我已经尝试这样做(page.html#anchor)并使用 jQuery 的滚动插件,但它只是直接转到该锚点而不使用滚动效果。

那么我可以在页面加载时延迟滚动,然后使用 jQuery 进行滚动吗?

如果我解释得不好,我深表歉意。

Facebook has a nice scroll effect which I would like to replicate with jQuery. When you load a page it starts at the top then scrolls to the selected anchor.

I've tried doing this (page.html#anchor) and using the scrolling plugin for jQuery however it just goes straight to that anchor without using the scroll effect.

So can I delay the scroll when the page is loaded then use jQuery to do the scrolling instead?

I apologise if I have explained it badly.

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

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

发布评论

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

评论(1

伴随着你 2024-08-09 04:59:51

http://www.learningjquery.com/2007/09/ animated-scrolling-with-jquery-12

基本上,您需要为scrollTop CSS属性设置动画。

$(document).animate({scrollTop: AMOUNT}, 1000);

http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12

basically, you're going to want to animate the scrollTop CSS property.

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