码迷,mamicode.com
首页 > Web开发 > 详细

HTML5实现两个视频循环播放!

时间:2016-11-24 08:33:29      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:html   style   public   oct   win   dtd   set   span   nload   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>循环播放</title>
</head>
<script type="text/javascript">
    window.onload = function(){
        var index = 0;
        var video = document.getElementById("videoID");
            video.onended = function() 
            {
                if(index){
                    index = 0;
                    video.src="222.mp4";
                }else{
                    index = 1;
                    video.src="221.mp4";
                }        
            };
    }
    
</script>
<body>
<video id="videoID" src="222.mp4" autoplay controls="controls" ></video>
</body>

HTML5实现两个视频循环播放!

标签:html   style   public   oct   win   dtd   set   span   nload   

原文地址:http://www.cnblogs.com/zyh1994/p/6095921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!