我正在尝试在我的幻想箱灯箱中实现自定义标题,但它似乎没有调用该函数。我还尝试直接从 fancybox 网站 (http://fancybox.net/blog) 复制和粘贴示例,但这似乎也不起作用,想知道是否有人可以帮助我。
我的代码如下:
function formatTitle(title, currentArray, currentIndex, currentOpts) {
return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/data/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
console.log('Custom fancyTitle shown');
}
$('.mosaic-overlay').fancybox({
custom_counterText: 'Image {#index#} of {#count#}',
'titlePosition' : 'inside',
titleFormat: formatTitle
});
使用 html:
<li> <!--Circle-->
<div class="mosaic-block circle">
<a title="Custom Title 1" rel="aapGroup" href="<?php bloginfo('template_directory'); ?>/img/webProjects/aapBlog.jpg" class="mosaic-overlay "> </a>
<div class="mosaic-backdrop"><img src="<?php bloginfo('template_directory'); ?>/img/screenshots/AAPBlog.png"/></div>
</div>
</li>
我试图实现这一点的页面是 www.alivedesign.co.uk ,在“Web Projects”位中,是第一个框。
谢谢你的帮助!