如果我不单击上一个或下一个按钮,Fancybox 可以正常工作,但是当我单击上一个或下一个时,未加载组图像,仅加载我可以单击的图像
我使用 jquery.fancybox-1.3.4.js,这是我调用的脚本
$(document).ready(function() {
$("a[rel=example_group]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
});
这是我调用的代码:
<a rel="example_group" href="images/page1-img3.jpg" alt="" /><img alt="" src="images/page1-img3.jpg"/></a>