Fancybox 2没有显示标签的标题

时间:2013-10-07 08:00:05

标签: javascript jquery fancybox

我正试图在fancybox中显示图像的标题,但它没有显示,我找不到原因......

这是我的HTML

<div id="gallery">
  <table style="border:none">
    <tr>
      <td style="vertical-align: middle; border=none; background-color:white;">
        <a class="fancybox" rel="group1" href="/path/to/image.jpg">
          <img src="/path/to/image.jpg" alt="my alt text" width="100" height="100" />
        </a>
      </td>
    </tr>
  </table>
</div>

这是Fancybox代码

$(".fancybox").fancybox({
    hideOnContentClick : false,
    openEffect : 'none',
    closeEffect : 'none',
    maxWidth : 900,
    autoSize : false, 
    helpers : {
        title: {
            type: 'outside'
        }
    },
    beforeShow : function() {
        this.title = "Nananana Batman";
    }
});

感谢您的帮助。

0 个答案:

没有答案