我正试图在fancybox中播放视频,但视频正在下载。这是我正在使用的代码:
$('a.video').on('click', function(event) {
event.preventDefault();
$.fancybox({
type' : 'iframe',
// hide the related video suggestions and autoplay the video
'href' : this.href.replace(new RegExp('watch\\?v=', 'i'), 'embed/') + '?rel=0&autoplay=1',
'overlayShow' : true,
'centerOnScroll' : true,
'speedIn' : 100,
'speedOut' : 50,
'width' : 640,
'height' : 480
});
});
答案 0 :(得分:-1)
您的点击功能可能会覆盖fancybox上的通话。您应该直接在链接上致电.fancybox()
。
<li><a class="video fancybox.iframe" href="http://www.youtube.com/embed/L9szn1QQfas?autoplay=1">My Video</a></li>
$('.video').fancybox();