Chrome中的html5视频只能播放自动播放?

时间:2017-11-24 03:58:44

标签: html5 google-chrome video

我为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认为他们正在展示,但那里什么都没有。

1 个答案:

答案 0 :(得分:1)

你被困在哪里? 看下面的代码它显示所有控件,也许你的系统中有另一个问题。

&#13;
&#13;
<!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;
&#13;
&#13;