使用模块fancybox,我尝试在模式页面(fancybox)中显示照片库。
问题是图像显示了 11 次,我不知道为什么。我已经搜索并且我使用了正确的语法。
这是我的代码:
查询
$(".testGatorade[rel=group1]").fancybox({
'speedIn' : 200,
'speedOut' : 200,
'overlayShow' : false,
'modal' : true,
'showCloseButton' : true,
'titleShow' : true,
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + currentIndex + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
HTML
<div id="slider1">
<a class ="testGatorade" href = "images/eagle.jpg" rel="group1" title = "Test de titre">
<img src = "images/eagle.jpg" width = "300" height = "300"/>
</a>
<a class ="testGatorade" href = "images/ring.jpg" rel="group1"></a>
<a class ="testGatorade" href = "images/tarantula.jpg" rel="group1"></a>
</div>
感谢您的帮助,
我从 4 天就开始工作了。