1
Fancybox工作正常,如果我不點擊上一個或下一個按鈕,但當我點擊上一個或下一個時,組圖像沒有加載,只有我可以點擊的圖像被加載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>
做一個jsfiddle.net。什麼版本的jQuery? Fancybox是2歲,嘗試http://fancyapps.com/fancybox/ – mplungjan