我使用以下代码将 HTML 视频实现到网页中:
<video id='the_video' class='pilot_video' controls="controls">
<source src='<?= bloginfo('template_directory'); ?>/inc/pilot.mp4' type="video/mp4">
<source src='<?= bloginfo('template_directory'); ?>/inc/pilot.ogv' type="video/ogg">
<source src='<?= bloginfo('template_directory'); ?>/inc/pilot.webm' type="video/webm">
<iframe width="560" height="315" src="http://www.youtube.com/embed/Hz9Eh01sEdo?rel=0" frameborder="0" allowfullscreen></iframe>
</video>
这在 IE10、Chrome、Firefox 和 Safari 中显示良好,但在 IE9 中控件不显示并且没有预览图像。它只显示一个黑框,您需要右键单击它并选择“播放”以显示任何内容。
任何想法为什么?我很困惑。