目前使用 Fancybox 在此原型上显示灯箱画廊
我在触发 Fancybox(包括缩略图助手)时使用以下 jQuery,但无法显示它们。有任何想法吗?
$(document).ready(function () {
$(".fancybox").fancybox({
type: "image",
helpers: {
title: {
type: 'inside'
},
buttons: {},
thumbs: {
width: 50,
height: 50
}
},
afterLoad: function () {
this.title = '' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
}
});
});