如何在 jcarousel 和 scoll 之间设置延迟?

发布于 2024-11-26 20:58:25 字数 80 浏览 0 评论 0原文

我使用的是圆形 jcarousel,其中的物品前后移动。我需要在它回滚到相反方向之前设置一个时间延迟。我怎样才能做到这一点? 任何帮助将不胜感激。

I am using a circular jcarousel where items are moving backward and forward. I need to set a time delay before it scolls back to reverse direction. how can I do that?
Any help will be appreciated.

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

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

发布评论

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

评论(2

南街九尾狐 2024-12-03 20:58:26

让我们检查一下:

$('.jcarousel')
    .jcarousel({
        // Core configuration goes here
    })
    .jcarouselAutoscroll({
        interval: 3000,
        target: '+=1',
        autostart: true
    })
;

http://sorgalla.com/jcarousel/docs/plugins /autoscroll/reference/installation.html

Lets check it:

$('.jcarousel')
    .jcarousel({
        // Core configuration goes here
    })
    .jcarouselAutoscroll({
        interval: 3000,
        target: '+=1',
        autostart: true
    })
;

http://sorgalla.com/jcarousel/docs/plugins/autoscroll/reference/installation.html

糖粟与秋泊 2024-12-03 20:58:25

请将时间延迟设置为自动。

$('#jcarousel').jcarousel({
  auto: 3, //delay 3 seconds
  wrap: 'circular',
  animation: 1000,
  scroll: 1
});

Please set time delay to auto.

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