如何循环基于 iScroll 4 的轮播?
我创建了一个基于 iScroll 的轮播。
在这里查看小提琴... http://jsfiddle.net/manseuk/r9VL2/2/
当你到达第四个列表元素时,它就停止了。是否可以添加一些代码以便它循环回到第一个列表元素?
提前致谢
I've created a iScroll based carousel.
See fiddle here... http://jsfiddle.net/manseuk/r9VL2/2/
At the moment when you get to the fourth list element, it stops. Is it possible to add some code so it loops back to the first list element?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是
myScroll1
的下一个/上一个按钮的快速示例。将它们的 onclick 替换为以下函数:它们获取要捕捉的 li 的长度。然后,如果您位于最后,则返回到第一个。如果您在第一个,则转到最后一个。
当然,这可以变得更通用、更少,但我会留给你。
Here a quick sample for the next/prev buttons of
myScroll1
. Replace their onclick with these functs:They get the length of li's to snap. Then if you are on the last, goes back to first. If you are on first, goes to last.
Of course this can be made more general and less stuff, but i'll leave to you.