如何控制JCarousel垂直滚动条的速度?

发布于 2024-09-19 03:50:52 字数 29 浏览 6 评论 0原文

如何控制JCarousel垂直滚动条的速度?

How to control JCarousel Vertical Scroller speed?

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

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

发布评论

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

评论(3

格子衫的從容 2024-09-26 03:51:03

工作很好,在这里找到了非常有帮助的帖子。平滑滚动图像滑块我改变
编码并给他们一个新的面貌...

jQuery('#anyid').jcarousel({
滚动:1,
自动:2,
动画:1500,
换行:'最后',
initCallback:_init_carousel,
按钮NextHTML:空,
按钮上一页HTML:空
});

Nice working it very helpful post found here. Smoothly scrolling images slider i changes
in coding and give them a new look...

jQuery('#anyid').jcarousel({
scroll: 1,
auto: 2,
animation: 1500,
wrap: 'last',
initCallback: _init_carousel,
buttonNextHTML: null,
buttonPrevHTML: null
});

眼中杀气 2024-09-26 03:51:01

这确实不是一个 PHP 问题,但是通过谷歌快速搜索,我找到了 jcarousel 上的文档。

文档链接

属性将其更改为“动画”。

滚动动画的速度作为 jQuery 术语中的字符串(“慢”或
“fast”)或整数毫秒
(请参阅 jQuery 文档)。如果设置为
0,动画关闭。

This really isn't a PHP question, but doing a quick google search I found the documentation on jcarousel.

doc link

Property to change it "animation".

The speed of the scroll animation as string in jQuery terms ("slow" or
"fast") or milliseconds as integer
(See jQuery Documentation). If set to
0, animation is turned off.

黑寡妇 2024-09-26 03:50:58

尝试动画:1600。我想这会对你有帮助。
例如:

jQuery('#anyid').jcarousel({
    auto: 3,
    vertical: true,
    wrap: 'circular',
    scroll: 2,
    animation: 1600
});

Try animation: 1600. I think this will help you.
For example:

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