如何使用jquery平滑滚动

发布于 2024-11-30 15:27:17 字数 370 浏览 0 评论 0原文

我正在使用scrollTop 来滚动内容div,

    var container = $('#content');
    container.scrollTop(
        $('#topic-' + id).offset().top - container.offset().top
    );

    container.scrollTop(
        container.scrollTop() + $('#topic-' + id).offset().top - container.offset().top
    );

它可以工作。但滚动对眼睛来说很困难。有没有什么办法可以缓解这个过渡。

我很感激任何帮助。

I am using scrollTop to scroll through content div using this

    var container = $('#content');
    container.scrollTop(
        $('#topic-' + id).offset().top - container.offset().top
    );

    container.scrollTop(
        container.scrollTop() + $('#topic-' + id).offset().top - container.offset().top
    );

It works. But the scrolling is hard on the eyes. Is there any way to ease the transistion.

I appreciate any help.

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

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

发布评论

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

评论(1

浅笑轻吟梦一曲 2024-12-07 15:27:17

来自 jquery API ...

您需要在动画中使用滚动顶部作为方法。 IE :

.animate({scrollTop:0}, 2000, 'ease')

From the jquery API ...

You need to use the scrolltop as a method in the animation. i.e. :

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