現在、このプロトタイプでライトボックスギャラリーを表示するために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 : '');
}
});
});