我需要显示视频弹出的标题/说明。在图像类型中有此选项,但对于视频/iframe 则没有。
在文档(http://dimsemenov.com/plugins/magnific-popup/documentation.html#iframe_type)中,我找到了模板标记的示例,但我不明白如何使标题可见。
请您帮我设置 iframe 标记以在弹出窗口中显示标题,如链接
<a class="popup" title="This is caption" href="http://vimeo.com/41128754"></a>
JS代码
$('a.popup').magnificPopup({
disableOn: 700,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: true,
titleSrc: 'title'
});
谢谢你。