添加下一个 &自定义图库的后退按钮
我有这个 javascript 代码:
$(function(){
$('.words-gallery div:gt(0)').hide();
setInterval(function() {
$('.words-gallery > div:first')
.fadeOut(1000)
.next()
.delay(995)
.fadeIn(1000)
.end()
.appendTo('.words-gallery');},
3000);
});
此代码将从 DIV
中创建一个画廊,每个 3000
将隐藏当前的 DIV
并显示下一个。
我试图添加下一个&后退按钮,但它对我不起作用。
这是我的小提琴:
http://www.jsfiddle.net/jUrNx
知道如何做?
I have this javascript code :
$(function(){
$('.words-gallery div:gt(0)').hide();
setInterval(function() {
$('.words-gallery > div:first')
.fadeOut(1000)
.next()
.delay(995)
.fadeIn(1000)
.end()
.appendTo('.words-gallery');},
3000);
});
This code will make a gallery from DIVs
and every 3000
will hide the current DIV
and show the next one.
I was trying to add next & back buttons but it's not working with me.
here is my fiddle:
http://www.jsfiddle.net/jUrNx
Any idea how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 jQuery Cycle 插件?它可以让您完成您所要求的一切甚至更多。甚至还有一个使用“next/prev”的特定示例。
这是一个工作小提琴:http://jsfiddle.net/3Qz5T/
本质上,您可以按如下方式设置代码:
HTML
JS
Why not use the jQuery Cycle plugin? It will let you do everything you're asking and more. There is even a specific example using "next/prev".
Here is a working fiddle: http://jsfiddle.net/3Qz5T/
Essentially, you would set up your code as follows:
HTML
JS