我正在尝试在HTML页面中嵌入视频,但iframe正在被阻止。我不是HTML的专家。我可以通过object
插入视频。您能否建议可能出现的问题?
<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<button class="closeButton" aria-hidden="true" data-dismiss="modal" class="close" type="button">×</button>
<iframe allowfullscreen="" src="http://player.vimeo.com/video/15731659" frameborder="0" width="880" height="450"></iframe>
</div>
</div>
</div> <!-- /.modal -->
答案 0 :(得分:0)
这是embed的语法。
<embed src="helloworld.flv">
如果要嵌入YouTube视频
<iframe width="560" height="315" src="//www.youtube.com/embed/0SU8-HJtYYc" frameborder="0" allowfullscreen></iframe>
不要尝试iframe,因为它会同时加载两个页面。这可能导致执行缓慢。
以下是w3schools链接:http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_embed_src