我为HTML5视频提供了以下代码,该功能适用于除Chrome以外的所有浏览器:
<video id="video-03" preload controls poster="/images/videos/testing.jpg" width="480" height="854">
<source src="/images/videos/testing.mp4" type="video/mp4">
<source src="/images/videos/testing.webm" type="video/webm">
<source src="/images/videos/testing.ogv" type="video/ogg">
</video>
我不希望自动播放开启。
我能在Chrome中使用此功能的唯一方法是,如果启用了自动播放功能,但仍然没有控件可以停止/启动它。
为什么Chrome没有显示控件的任何想法?即使我右键点击视频,它也会在&#34;显示控件&#34;旁边打勾。所以Chrome认为他们正在展示,但那里什么都没有。
答案 0 :(得分:1)
<!DOCTYPE html>
<html>
<body>
<video width="320" height="240" controls>
<source src="https://www.w3schools.com/tags/movie.mp4" type="video/mp4">
<source src="https://www.w3schools.com/tags/movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
<p><strong>Note:</strong> The video tag is not supported in Internet Explorer 8 and earlier versions.</p>
</body>
</html>
&#13;