基本语法

视频标签对像.属性名 = 值;
视频标签对像.方法名();

功能

视频标签对像.play() 开始播放视频。
视频标签对像.pause() 暂停当前播放的视频。
视频标签对像.currentTime 设置或返回视频中的当前播放位置(以秒计)。
视频标签对像.muted 设置或返回是否关闭声音。

示例

  1. 1、播放视频
  2. function hello1(){
  3. video.play();
  4. }
  5. video.play(); 视频播放
  6. 2、播放暂停
  7. function hello2(){
  8. video.pause();
  9. }
  10. video.pause(); 视频暂停
  11. 3、设计播放时间
  12. function hello3(){
  13. video.currentTime = 78;
  14. }
  15. video.currentTime = 78; 设置播放时间从78秒开始
  16. 4、播放视频
  17. function hello4(){
  18. video.muted = !video.muted;
  19. }
  20. video.muted = !video.muted; 视频声音开启或关闭