我在将YouTube嵌入式播放器的弹出式窗口中同时添加rel = 0和autoplay = 1时遇到问题。
似乎这只是url中的第一个参数在起作用,我已经尝试了所有这些版本:
?rel=0&autoplay=1
?rel=0&autoplay=1
?rel=0?autoplay=1
他们都没有工作。但是,如果我将autoplay = 1向上移 Action 为第一个参数,则autoplay可以正常工作-但rel = 0却不能。
这是我的代码。
HTML:
<a class="video1" href="https://www.youtube.com/watch?v=_ziUhNerFMI?rel=0&autoplay=1"></a>
CSS:
.video1 {
background-image: url('http://placehold.it/180x180');
background-repeat: no-repeat;
background-size: contain;
height: 180px;
width: 180px;
display: block;
outline: none;
}
JS:
jQuery(document).ready(function ($) {
$('.video1').magnificPopup({
type: 'iframe',
iframe: {
markup: '<?php echo $first; ?>'+
'<div class="mfp-iframe-scaler">'+
'<div class="mfp-close"></div>'+
'<iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe>'+
'</div>'
},
callbacks: {
markupParse: function(template, values, item) {
values.title = item.el.attr('title');
}
}
});
});
最佳答案
这似乎很好用:
jQuery(document).ready(function ($) {
$('.video1').magnificPopup({
items: {
src: '<iframe width="560" height="315" src="https://www.youtube.com/embed/_ziUhNerFMI?autoplay=1&rel=0" frameborder="0" allowfullscreen></iframe>',
type: 'inline'
}
});
});
.video1 {
background-image: url('http://placehold.it/180x180');
background-repeat: no-repeat;
background-size: contain;
height: 180px;
width: 180px;
display: block;
outline: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.0.0/jquery.magnific-popup.min.js"></script>
<a class="video1" href="https://www.youtube.com/watch?v=_ziUhNerFMI"></a>
关于javascript - YouTube中的Rel = 0和autoplay = 1在巨大的弹出窗口中嵌入播放器不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30557236/