对于fancyBox 1.x,有一个如何格式化标题的信息。我错过了这个新版本...
我想添加一个标题,如“x的图像1。你可以在这里找到孔库[= link]”
答案 0 :(得分:7)
对于fancybox v2.0.x,您可以使用title
选项自定义/格式化beforeShow
,如:
$(".fancybox").fancybox({
beforeShow : function() {
this.title = (this.title ? '' + this.title + '' : '') + 'Image ' + (this.index + 1) + ' of ' + this.group.length + '. You can find the whole gallery <a href="/parth/to/gallery">here</a>';
}
}); // fancybox
答案 1 :(得分:0)