我想要一个 Fancybox 效果,显示:
图片、标题、段落
它只真正显示图像和标题。
如何在覆盖框中也显示一些文本?
<li>
<a class="fancybox" rel="projects" href="<?php the_field('image'); ?>" title="<?php the_title(); ?>">
<img src="<?php the_field('image'); ?>" alt="" />
</a>
<p>Some content...</p>
</li>
$(".fancybox").fancybox({
padding : 0,
nextEffect : 'fade',
prevEffect : 'fade',
title : this.title,
helpers : {
title : {
type: 'outside'
}
}
});
有任何想法吗?