jquery照片库下一个-上一个按钮绑定问题
我正在使用这个照片库:
$('.normsize img:gt(0)').hide();
$('.photos a').click(function(){
var index = $('.photos a').index(this);
$('.normsize img:visible').hide();
$('.normsize img:eq('+index+')').fadeIn();
});
在 div 中包含缩略图,旁边是正常尺寸的图片。
我的问题是:我如何绑定下一个和上一个按钮。它可能比我已经使用的更简单。
编辑:修复代码输出。
I'm using this photo gallery with this:
$('.normsize img:gt(0)').hide();
$('.photos a').click(function(){
var index = $('.photos a').index(this);
$('.normsize img:visible').hide();
$('.normsize img:eq('+index+')').fadeIn();
});
with thumbnails in a div and the normal size pics next to it.
My question is: How would I bind the next and previous buttons . Its probably simpler than what I m using already.
Edit: Fixed code output.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将当前图像索引存储在全局变量中。
You have to store the current image index in a global variable.