我正在使用颜色框在网页加载时弹出视频。我正在使用带有颜色框模式的内联 html 选项,并且我在模式框中有一个 iframe youtube 视频。当我关闭视频时,音频停止,但随后再次加载并开始播放。当我关闭模态框时,我希望音频不再开始播放。
这是我在加载页面时打开模式的脚本:
<script>
jQuery(document).ready(function() {
jQuery.colorbox({width:"602px", height:"460px", inline:true, href:"#video_popup"})
});
</script>
这是实际的内联内容:
<div style="display:none;">
<div id="video_popup">
<iframe width="560" height="315" src="http://www.youtube.com/embed/6A8W77m-ZTw?&autoplay=1&controls=0" frameborder="0" allowfullscreen></iframe>
<button></button>
</div>
</div>