欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML5 video循环播放多个视频的方法步骤

程序员文章站 2022-06-23 14:50:22
HTML5 video循环播放多个视频的方法步骤这篇文章主要介绍了HTML5 video循环播放多个视频的方法步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学... 20-08-06...

最近在开发中遇到的需求是:微信扫描课件二维码,播放其对应的课件视频

设计流程

1.扫描二维码时,将其视频列表存入model中,存入第一条是为了,不在html界面重新获取第一条视频

  model.addattribute("playurl", videos.get(0).getvideourl());
  model.addattribute("videourls", jsonutils.tojson(videos));

2.返回其对应的html界面

return "client/courseplayer.html";

3.使用video 播放视频第一条视频

    <video id="videoid" controls="true"
           style="object-fit:fill"
           src="${playurl}"
           class="horizontal-img"
           preload="metadata"
           webkit-playsinline="true"
           playsinline="true"
           x-webkit-airplay="allow"
           x5-video-player-type="h5"
           x5-video-player-fullscreen="true"
           x5-video-orientation="landscape"
           autoplay>
      抱歉,您的浏览器不支持内嵌视频!
    </video>

4.用ended 监控视频播放进度

<script type="application/javascript">
  videodom.addeventlistener('ended', function(event) {
    if (index === length-1) {
      videodom.pause();
    } else {
      index += 1;
      videodom.src = videos[index].videourl;
      videodom.play();
    }
  })
 </script>

html界面如下:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport"
        content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  <meta http-equiv="x-ua-compatible" content="ie=edge">
  <title>${title}</title>
  <style>
    .video {
      position: fixed;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      z-index: 99;
      transition: all 0.3s;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .video-content {
      height: 100%;
      width: 100%;
    }

    video {
      position: initial;
    }

    video.horizontal-img {
      width: 100%;
      height: auto;
      max-height: 100%;
    }
  </style>
</head>
<body>
<div class="video">
  <div class="video-content">
    <video id="videoid" controls="true"
           style="object-fit:fill"
           src="${playurl}"
           class="horizontal-img"
           preload="metadata"
           webkit-playsinline="true"
           playsinline="true"
           x-webkit-airplay="allow"
           x5-video-player-type="h5"
           x5-video-player-fullscreen="true"
           x5-video-orientation="landscape"
           autoplay>
      抱歉,您的浏览器不支持内嵌视频!
    </video>
  </div>
</div>
<script type="application/javascript">
  var dom = document;
  var index = 0;
  var videos = ${videourls};
  var videodom = dom.getelementbyid('videoid');
  videodom.play();
  videodom.addeventlistener('ended', function(event) {
    if (index === length-1) {
      videodom.pause();
    } else {
      index += 1;
      videodom.src = videos[index].videourl;
      videodom.play();
    }
  })
</script>
</body>
</html>

到此这篇关于html5 video循环播放多个视频的方法步骤的文章就介绍到这了,更多相关html5 video循环播放多视频内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!