HTML 5 Video + DOM

HTML5 <video> - 使用 DOM 进行控制

HTML5 <video> 元素同样拥有方法、属性和事件。

其中的方法用于播放、暂停以及加载等。其中的属性(比如时长、音量等)可以被读取或设置。其中的 DOM 事件能够通知您,比方说,<video> 元素开始播放、已暂停,已停止,等等。

下例中简单的方法,向我们演示了如何使用 <video> 元素,读取并设置属性,以及如何调用方法。

实例

为视频创建简单的播放/暂停以及调整尺寸控件:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <div style="text-align:center;">
  5. <button onclick="playPause()">播放/暂停</button>
  6. <button onclick="makeBig()"></button>
  7. <button onclick="makeNormal()"></button>
  8. <button onclick="makeSmall()"></button>
  9. <br />
  10. <video id="video1" width="420" style="margin-top:15px;">
  11. <source src="/example/html5/mov_bbb.mp4" type="video/mp4" />
  12. <source src="/example/html5/mov_bbb.ogg" type="video/ogg" />
  13. Your browser does not support HTML5 video.
  14. </video>
  15. </div>
  16. <script type="text/javascript">
  17. var myVideo=document.getElementById("video1");
  18. function playPause()
  19. {
  20. if (myVideo.paused)
  21. myVideo.play();
  22. else
  23. myVideo.pause();
  24. }
  25. function makeBig()
  26. {
  27. myVideo.width=560;
  28. }
  29. function makeSmall()
  30. {
  31. myVideo.width=320;
  32. }
  33. function makeNormal()
  34. {
  35. myVideo.width=420;
  36. }
  37. </script>
  38. </body>
  39. </html>

上面的例子调用了两个方法:play() 和 pause()。它同时使用了两个属性:paused 和 width。

HTML5 <video> - 方法、属性以及事件

下面列出了大多数浏览器支持的视频方法、属性和事件:

方法 属性 事件
play() currentSrc play
pause() currentTime pause
load() videoWidth progress
canPlayType videoHeight error
duration timeupdate
ended ended
error abort
paused empty
muted emptied
seeking waiting
volume loadedmetadata
height
width

注释:在所有属性中,只有 videoWidth 和 videoHeight 属性是立即可用的。在视频的元数据已加载后,其他属性才可用。