如何控制JCarousel垂直滚动条的速度?
如何控制JCarousel垂直滚动条的速度?
How to control JCarousel Vertical Scroller speed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何控制JCarousel垂直滚动条的速度?
How to control JCarousel Vertical Scroller speed?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
工作很好,在这里找到了非常有帮助的帖子。平滑滚动图像滑块我改变
编码并给他们一个新的面貌...
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
});
这确实不是一个 PHP 问题,但是通过谷歌快速搜索,我找到了 jcarousel 上的文档。
文档链接
属性将其更改为“动画”。
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".
尝试
动画:1600
。我想这会对你有帮助。例如:
Try
animation: 1600
. I think this will help you.For example: