仅自动一次!
我正在使用 jcarousel,我已将其设置为每 1 秒自动显示图像。我通过设置 auto 属性来做到这一点。
我一直在寻找只执行一次此操作的方法,也就是说我只能浏览一次图像。不是无限的。我将环绕属性更改为 null,并且它停止重复,但我希望它遍历所有图像,然后到达第一个图像并在那里停止(如果可以这么说,则在循环开始时)。
欢迎任何提示!
I'm using a jcarousel I've set it to display the images automatically every 1 second. I did this by setting the auto property.
I've been looking at ways to do this only ONCE, that is I only one to go through the images once. Not infinite. I changed the wrap property to null, and it stops repeating it, but i would like for it to go through all the images then to the first and stop there (at the beginning of the cycle if so to say).
Any hints welcome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不支持
repeat
属性,这有点奇怪。之前没有使用过 jCarousel,我只是推测这可能有效(通过阅读 文档) 。
在您的配置中,将
wrap
属性设置为“last”。使用itemLastOutCallback
函数(显然是在显示最后一项后调用)将wrap
属性设置为“null”。It's kinda odd that it doesn't support a
repeat
property.Not having used jCarousel before, I'm only speculating that this might work (from reading the documentation).
In your configuration, set the
wrap
property to 'last'. Using theitemLastOutCallback
function (which is apparently called after the last item is displayed) set thewrap
property to 'null'.