fancybox:在与大图像宽度相同的多行中显示长标题?

fancybox: display long caption in multiple lines with the same width as the large image?

我正在使用 Fancybox 2.1.5 显示带有大图像的弹出窗口 window。这是 html:

<div class="webmedia">
    <a href="my-large.jpg" class="click-magnify" title="A very long caption, wider than its image">
        <img src="my-small.jpg" width="283">
    </a>
</div>

Javascript:

 $('.click-magnify').fancybox({
 });

显示弹出窗口时,标题比大图更宽。我希望在大图的宽度相同的情况下多行显示标题。

谢谢和问候!

您可以尝试更改标题 type,例如:

$(".click-magnify").fancybox({
    helpers : {
        title: {
            type: 'inside'
        }
    }
});