With the modules fancybox i try to show a photo gallery in a modal page (fancybox).
The problem is that the images are showing 11 times and i don't know why. I already search and i use the correct syntax.
Here is my code:
JQUERY
$(".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>
Thanks for helping,
i work on it since 4 days.