Fancyboxポップアップのタイトル内に「Image1/3」(リンクされたギャラリー内の画像の位置に関連)を入れたいのですが、次のようになります。
$(document).ready(function() {
$(".fancybox-button").fancybox({
prevEffect : 'none',
nextEffect : 'none',
closeBtn : false,
helpers : {
title : { type : 'inside'},
buttons : {}
},
afterLoad : function() {
this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
}
});
});
広範囲にわたって検索しましたが、どこにも見つかりません。
編集
を使用して最初のクリックで動作させることができましたが、次のクリックafterLoad
と前のクリックで同様の機能を見つけることができません。