3
我現在只需要幫助完成此任務,顯示標題中的prev/next按鈕的if語句無法正常工作。Fancybox爲標題添加左/右按鈕
通過添加額外的左/右按鈕標題喜歡這裏的示例圖像中自定義標準的fancybox:
這是我迄今爲止它增加了圖像計數。這些按鈕可以添加到此,使其更容易風格?
$("a.fancybox").fancybox({
'padding' : 5,
'overlayShow' : true,
'speedIn' : 600,
'speedOut' : 500,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'easingIn' : 'easeOutBack',
'easingOut' : 'easeInBack',
'titlePosition' : 'inside',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
$title = '';
var current = currentIndex + 1;
if(current >= currentArray.length){
$title += '<a href="javascript:;" onclick="$.fancybox.prev();" id="fancybox-prev-btn"></a>';
}
if(current <= currentArray.length){
$title += '<a href="javascript:;" onclick="$.fancybox.next();" id="fancybox-next-btn"></a>';
}
$title += '<span class="fancybox-title">' + title + '<span class="fancybox-title-count">(image ' + (currentIndex + 1) + ' of ' + currentArray.length + ')</span></span><br class="clearBoth"/>';
return $title;
}
});
再次感謝您,我花了很長時間在轉圈圈,如果改變聲明。 我同意'#'而不是javascript。 –
任何機會可以審查最新版本Fancybox(v2.1.0)? ;) – Kate
@Kate檢出[此更新的演示](http://jsfiddle.net/ANLxC/70/):) – Mottie