如何在保留相同花式框設置的同時點擊'.fancybox-button'來打開'.fancybox'打開的相同圖畫?FancyBox從多個鏈接打開同一個圖庫
<div class="custom-thumbnail"><a class="fancybox" rel="group" href="Gallery/Image3.jpg"><img title="Bird Caption" src="Gallery/_t/testImage3_jpg.jpg"></a></div>
<div class="custom-caption"><a class="fancybox-button" rel="fancybox-button" href="Gallery/testImage3.jpg">Click here to open gallery</a></div>
這裏是我的代碼來管理的fancybox屬性
jQuery(".fancybox").fancybox({
maxWidth : 800,
maxHeight : 600,
fitToView : false,
width : '100%',
height : '100%',
title: this.title,
wmode: 'transparent',
allowfullscreen : 'true',
allowscriptaccess : 'always',
beforeLoad: function() {
this.title = jQuery(this.element).find('img').attr('title');
},
next : {
13 : 'left', // enter
34 : 'up', // page down
39 : 'left', // right arrow
40 : 'up' // down arrow
},
prev : {
8 : 'right', // backspace
33 : 'down', // page up
37 : 'right', // left arrow
38 : 'down' // up arrow
},
close : [27], // escape key
helpers: {
title : {
type : 'inside' // 'float', 'inside', 'outside' or 'over'
},
overlay : {
showEarly : false
},
thumbs : {
width: 50,
height: 50
}
}
});
複製對話框窗口中的圖像。 – Hectooorr
我爲你準備了一把小提琴。查看更新後的答案。 – ilter
仍然'fancybox-button'添加'fancy-box'不會打開與'custom-thumbnail'內部鏈接相同屬性的圖庫。 – Hectooorr