一个一个地淡入元素,然后全部淡出并重新开始
我需要淡入几个列表元素,然后将它们全部淡出并重新开始。我在这里找到了代码:http://jsfiddle.net/mqthK/,这是此处指出:逐个淡入淡出多个元素。但是,我需要递归运行此代码(即淡出所有元素,然后再次调用该函数并重新开始)。
有人可以分享正确的代码吗?
I need to fade in several list elements, then fade them all out and start over. I've got the code I found here: http://jsfiddle.net/mqthK/, which was pointed out here: Fade multiple elements one after the other. However, I need to run this code recursively (i.e. - fade out all elements, then call the function again and start over).
Could someone share the right code for this, please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您更新到 jQuery 1.4.4 或更高版本,则可以使用
fadeToggle
方法。如果您选择要淡入淡出的所有元素,并发送下一个要显示/隐藏的元素的索引,则可以轻松循环并重新启动:
If you update to jQuery 1.4.4 or later, you can use the
fadeToggle
method.If you select all the elements that you want to fade, and send in the index of the next element to show/hide, you can easily loop and restart:
http://jsfiddle.net/mqthK/48/
只需检查是否有下一个元素;如果没有,那么您就位于列表的末尾;然后淡出所有内容并运行第一个元素。
Just check if there is a next element; if not, you're at the end of the list; then fade everything out and run with the first element.
将 fadeLI 更改为如下:
工作示例: http://jsfiddle.net/mqthK/45/
Change the fadeLI to as below:
Working example: http://jsfiddle.net/mqthK/45/