我知道之前有人问过这个问题,但是我无法让我的代码正常工作。
我启动了我的fancybox:
$(document).ready(function() {
$('.fancybox').on('click', function(event) {
event.preventDefault();
$.fancybox({
'type' : 'iframe',
// hide the related video suggestions and autoplay the video
'href' : this.href = this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1') + '&autoplay=1',
'overlayShow' : true,
'centerOnScroll' : true,
'speedIn' : 100,
'speedOut' : 50,
'width' : 640,
'height' : 480
});
});
});
然后调用 iframe:
<a class="fancybox fancybox.iframe" href="http://vimeo.com/123456">
但是当我关闭弹出窗口然后尝试再次打开该视频时没有显示,任何人都可以帮我解决它,大多数解决方案都与“类型”有关:“内联”并且没有接缝与我的示例一起使用。
非常感谢,