如何将音频/视频控件包括在 HTML 中?


在 HTML 中使用 controls 属性可在 HTML 中包含音频/视频控件。

示例

你可以尝试运行以下代码来实现 controls 属性 −

<!DOCTYPE html>
<html>
   <head>
      <title>HTML video Tag</title>
   </head>
   <body>
      <p>Online Compiler</p>
      <br />
      <video width = "500" height = "300" controls>
         <source src = "/html/compileonline.mp4" type = "video/mp4">
         This browser doesn't support video tag.
      </video>
   </body>
</html>

更新于:03-Mar-2020

415 查看次数

Kickstart Your 职业

完成课程,获得认证

开始学习
广告