1

对于fancyBox 1.x,有一个关于如何格式化标题的信息。我错过了这个新版本...

我想添加一个标题,例如“x 的图像 1。您可以在此处找到孔库 [=link]”

4

2 回答 2

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
于 2012-05-09T15:55:28.390 回答
0

你看到文档页面了吗

选项称为

title- 覆盖标题内容,接受任何 HTML

于 2012-05-09T09:09:57.993 回答