如何在HTML中在音频/视频准备好后立即开始播放它们?


使用 autoplay 属性设置音频或视频在页面加载时自动播放。

示例

可以尝试运行以下代码以在 HTML 中实现 autoplay 属性 −

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "200" controls autoplay>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
         Your browser does not support the video element.
      </video>
   </body>
</html>

更新于:2020 年 3 月 2 日

258 次浏览

开启你的职业生涯

通过完成课程获得认证

开始
广告