1

我有一个带有标题的fancybox画廊,包含标题和图像编号:例如Title 1/2

我想在图像的右侧有图像编号,在左侧有标题。因此我需要将 img Number 包装到一个单独的 span 标签中。我该怎么做呢?

这就是现有的标记:

<div class="fancybox-title fancybox-title-float-wrap">
   <span class="child">5 / 7 - Soitinrakentajat pajalla, 2012</span>
</div

但它应该是:

<div class="fancybox-title fancybox-title-float-wrap">
   <span class="child">Soitinrakentajat pajalla, 2012</span>
   <span class="text-right">5 / 7</span>
</div>

img 数字是这样生成的:

$(".fancybox").fancybox({
        afterLoad : function() {this.title = (this.index + 1) + ' / ' + this.group.length + (this.title ? ' - ' + this.title : '');}
    });

我该怎么做呢?

谢谢

4

1 回答 1

2

您可以执行以下操作:

$(".fancybox").fancybox({
    helpers: {
        title: {
            type: 'inside'
        }
    },
    beforeShow: function () {
        this.title = "<span class='mySpanLeft'>" + (this.title ? this.title : '') + "</span>" + "<span class='mySpanRight'>Image " + (this.index + 1) + ' / ' + this.group.length + "</span>";
    }
});

JSFIDDLE

于 2013-01-31T17:50:47.757 回答