网页加入卡通人物

在这里插入图片描述

说明,网页是通过Django动态生成,之后保存下来的,原始网页模板数据很少。
参考,https://github.com/stevenjoezhang/live2d-widget

左边人物,在网页中加入这三行即可。

<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome/css/font-awesome.min.css"/>
<script src="https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/autoload.js"></script>

右边人物,在网页中加入这几行。

<script type="text/javascript" charset="utf-8" async="" src="https://cdn.jsdelivr.net/npm/live2d-widget@3.0.4/lib/L2Dwidget.0.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/live2d-widget@3.0.4/lib/L2Dwidget.min.js?_=1557308476616"></script>
       
<script>
	        /**
             *
             * 更换模型修改jsonPath即可,https://unpkg.com/模型包@1.0.5/assets/卡通模型名.model.json
             * 模型包:live2d-widget-model-卡通模型名
             * 卡通类型
             * (chitose-青年男子 haruto-小男孩 hibiki-小女生  izumi-成熟妹子 koharu-小女孩 miku-知音未来 )
             * (ni-j-抽象男孩 nico-抽象带尾巴女孩 nipsilon-抽象长发女孩 nito-抽象机器人 unitychan-抽象黄发卡哇伊)
             * (shizuku-板娘 z16-医生小妹 tororo-白猫 hijiki-黑猫 tsumiki-绿发妹子  wanko-碗中小狗 )
             */
        $('#newblog-container').load(/*[[@{/footer/newblog}]]*/"/footer/newblog");
        //2d模型
        L2Dwidget.init({
		"display": {
                "superSample": 2,
                "width": 100,
                "height": 200,
                "position": "right",
                "hOffset": 0,
                "vOffset": 0
            },
		"model": {
            "jsonPath": "https://unpkg.com/live2d-widget-model-shizuku@1.0.5/assets/shizuku.model.json", // 卡通模型
            "scale": 0.4
        },
		 "react": {
            "opacityDefault": 1,
            "opacityOnHover": 1
        }
        });

</script>

去除虚线框

 canvas#live2dcanvas {
        border: 0 !important; #可避免虚线问题
    }

网页保存后可以查看效果,如上图。

<!DOCTYPE html><html lang="ja">
<head>
<title>player</title>
	<link rel="icon" href="/static/pic/1.jpg" type="image/x-icon" />
    <link rel="shortcut icon" href="/static/pic/1.jpg" type="image/x-icon" />
	<link href="https://vjs.zencdn.net/7.6.6/video-js.css" rel="stylesheet" />	
	<!-- If you'd like to support IE8 (for Video.js versions prior to v7) -->
	<script src="https://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script>

<h3 align="center">欢迎访问樱花视频网站!</h3>
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome/css/font-awesome.min.css"/>
<script src="https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/autoload.js"></script>

<script type="text/javascript" charset="utf-8" async="" src="https://cdn.jsdelivr.net/npm/live2d-widget@3.0.4/lib/L2Dwidget.0.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/live2d-widget@3.0.4/lib/L2Dwidget.min.js?_=1557308476616"></script>
       
<script>
  /**
             *
             * 更换模型修改jsonPath即可,https://unpkg.com/模型包@1.0.5/assets/卡通模型名.model.json
             * 模型包:live2d-widget-model-卡通模型名
             * 卡通类型
             * (chitose-青年男子 haruto-小男孩 hibiki-小女生  izumi-成熟妹子 koharu-小女孩 miku-知音未来 )
             * (ni-j-抽象男孩 nico-抽象带尾巴女孩 nipsilon-抽象长发女孩 nito-抽象机器人 unitychan-抽象黄发卡哇伊)
             * (shizuku-板娘 z16-医生小妹 tororo-白猫 hijiki-黑猫 tsumiki-绿发妹子  wanko-碗中小狗 )
             */
        $('#newblog-container').load(/*[[@{/footer/newblog}]]*/"/footer/newblog");
        //2d模型
        L2Dwidget.init({
		"display": {
                "superSample": 2,
                "width": 100,
                "height": 200,
                "position": "right",
                "hOffset": 0,
                "vOffset": 0
            },
		"model": {
            "jsonPath": "https://unpkg.com/live2d-widget-model-shizuku@1.0.5/assets/shizuku.model.json", // 卡通模型
            "scale": 0.4
        },
		 "react": {
            "opacityDefault": 1,
            "opacityOnHover": 1
        }
        });

</script>

<style type="text/css">
<!--

 canvas#live2dcanvas {
        border: 0 !important; #可避免虚线问题
    }

.mainarea
    {

    background-color: white;
    height: auto;
    }
.rightarea
    {
    float: right;
    width: 91%;

   }
.leftarea
   {
    float: left;
    width: 8%;
    background-color: white;
    }

.page{
	text-align:center;
	margin-top: 50px;
}

.page a{
	text-decoration:none;
	border:1px solid black;
	padding: 5px 7px;
	color: blue;
}
p{
	font-size:8px;
	text-align:left;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:4; 
	-webkit-box-orient: vertical;
	}
-->
</style>
</head>

<body>
<div>
	<div style="color:#48D1CC;">
		
		
		<h5 align="right">user: 123@qq.com</h5>
		
	</div>
	
	<div class="page" id="index">
		
			<span><a href="/app/0"   >上一页</a></span>
				
					
							<a id ="list2" href="/app/2"> 2 </a>
					
							<a id ="list3" href="/app/3"> 3 </a>
					
							<a id ="list4" href="/app/4"> 4 </a>
					
							<a id ="list5" href="/app/5"> 5 </a>
					
							<a id ="list6" href="/app/6"> 6 </a>
					
							<a id ="list7" href="/app/7"> 7 </a>
					
							<a id ="list8" href="/app/8"> 8 </a>
					
							<a id ="list9" href="/app/9"> 9 </a>
					
							<a id ="list10" href="/app/10"> 10 </a>
					
							<a id ="list11" href="/app/11"> 11 </a>
					

				
		
			&nbsp;<span><a  href="/app/2" >下一页</a></span>
			
		
	</div>

	<br>

	<div class="mainarea">
		<div class="leftarea">
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/斗罗大陆/1/" style="text-decoration:none;color:#00AEAE;"> 斗罗大陆 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/海贼王/1/" style="text-decoration:none;color:#00AEAE;"> 海贼王 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/火影忍者/1/" style="text-decoration:none;color:#00AEAE;"> 火影忍者 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/死神/1/" style="text-decoration:none;color:#00AEAE;"> 死神 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/银魂/1/" style="text-decoration:none;color:#00AEAE;"> 银魂 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/龙珠/1/" style="text-decoration:none;color:#00AEAE;"> 龙珠 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/家庭教师/1/" style="text-decoration:none;color:#00AEAE;"> 家庭教师 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/名侦探柯南/1/" style="text-decoration:none;color:#00AEAE;"> 名侦探柯南 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/灌篮高手/1/" style="text-decoration:none;color:#00AEAE;"> 灌篮高手 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/全职猎人/1/" style="text-decoration:none;color:#00AEAE;"> 全职猎人 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/幽游白书/1/" style="text-decoration:none;color:#00AEAE;"> 幽游白书 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/哆啦A梦/1/" style="text-decoration:none;color:#00AEAE;"> 哆啦A梦 </a>
					</div>
				
					
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/圣斗士星矢/1/" style="text-decoration:none;color:#00AEAE;"> 圣斗士星矢 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/寄生兽/1/" style="text-decoration:none;color:#00AEAE;"> 寄生兽 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/死亡笔记/1/" style="text-decoration:none;color:#00AEAE;"> 死亡笔记 </a>
					</div>
				
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/妖精的尾巴/1/" style="text-decoration:none;color:#00AEAE;"> 妖精的尾巴 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/犬夜叉/1/" style="text-decoration:none;color:#00AEAE;"> 犬夜叉 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/棒球英豪/1/" style="text-decoration:none;color:#00AEAE;"> 棒球英豪 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/游戏王/1/" style="text-decoration:none;color:#00AEAE;"> 游戏王 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/美食的俘虏/1/" style="text-decoration:none;color:#00AEAE;"> 美食的俘虏 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/狐妖小红娘/1/" style="text-decoration:none;color:#00AEAE;"> 狐妖小红娘 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/滑头鬼之孙/1/" style="text-decoration:none;color:#00AEAE;"> 滑头鬼之孙 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/王者天下/1/" style="text-decoration:none;color:#00AEAE;"> 王者天下 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/因为太怕痛就全点防御力了/1/" style="text-decoration:none;color:#00AEAE;"> 因为太怕痛就全点防御力了 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/关于我转生变成史莱姆这档事/1/" style="text-decoration:none;color:#00AEAE;"> 关于我转生变成史莱姆这档事 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/元龙/1/" style="text-decoration:none;color:#00AEAE;"> 元龙 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/刀剑神域/1/" style="text-decoration:none;color:#00AEAE;"> 刀剑神域 </a>
					</div>
				
					
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/棋魂/1/" style="text-decoration:none;color:#00AEAE;"> 棋魂 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/乱马/1/" style="text-decoration:none;color:#00AEAE;"> 乱马 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/阿拉蕾/1/" style="text-decoration:none;color:#00AEAE;"> 阿拉蕾 </a>
					</div>
				
	
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/聪明的一休/1/" style="text-decoration:none;color:#00AEAE;"> 聪明的一休 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/黑色五叶草/1/" style="text-decoration:none;color:#00AEAE;"> 黑色五叶草 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/四月是你的谎言/1/" style="text-decoration:none;color:#00AEAE;"> 四月是你的谎言 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/悠哉日常大王/1/" style="text-decoration:none;color:#00AEAE;"> 悠哉日常大王 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/未闻花名/1/" style="text-decoration:none;color:#00AEAE;"> 未闻花名 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/一人之下/1/" style="text-decoration:none;color:#00AEAE;"> 一人之下 </a>
					</div>
				
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/鲁邦三世/1/" style="text-decoration:none;color:#00AEAE;"> 鲁邦三世 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/笨蛋测试召唤兽/1/" style="text-decoration:none;color:#00AEAE;"> 笨蛋测试召唤兽 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/铁臂阿童木:起源/1/" style="text-decoration:none;color:#00AEAE;"> 铁臂阿童木:起源 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/铁臂阿童木/1/" style="text-decoration:none;color:#00AEAE;"> 铁臂阿童木 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/铁臂阿童木2003/1/" style="text-decoration:none;color:#00AEAE;"> 铁臂阿童木2003 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/機動戰士高達SEED/1/" style="text-decoration:none;color:#00AEAE;"> 機動戰士高達SEED </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/中华小当家/1/" style="text-decoration:none;color:#00AEAE;"> 中华小当家 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/网球王子/1/" style="text-decoration:none;color:#00AEAE;"> 网球王子 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/网球王子全国大赛篇/1/" style="text-decoration:none;color:#00AEAE;"> 网球王子全国大赛篇 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/秦时明月之天行九歌/1/" style="text-decoration:none;color:#00AEAE;"> 秦时明月之天行九歌 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/秦时明月/1/" style="text-decoration:none;color:#00AEAE;"> 秦时明月 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/通灵王/1/" style="text-decoration:none;color:#00AEAE;"> 通灵王 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/新足球小将/1/" style="text-decoration:none;color:#00AEAE;"> 新足球小将 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/足球小将1983/1/" style="text-decoration:none;color:#00AEAE;"> 足球小将1983 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/樱桃小丸子/1/" style="text-decoration:none;color:#00AEAE;"> 樱桃小丸子 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/宇宙战舰大和号/1/" style="text-decoration:none;color:#00AEAE;"> 宇宙战舰大和号 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/明日之丈/1/" style="text-decoration:none;color:#00AEAE;"> 明日之丈 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/超时空要塞Macross/1/" style="text-decoration:none;color:#00AEAE;"> 超时空要塞Macross </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/超时空要塞DELTA/1/" style="text-decoration:none;color:#00AEAE;"> 超时空要塞DELTA </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/超时空要塞F/1/" style="text-decoration:none;color:#00AEAE;"> 超时空要塞F </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/超时空要塞7/1/" style="text-decoration:none;color:#00AEAE;"> 超时空要塞7 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/超时空要塞ZERO/1/" style="text-decoration:none;color:#00AEAE;"> 超时空要塞ZERO </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/超时空要塞外传/1/" style="text-decoration:none;color:#00AEAE;"> 超时空要塞外传 </a>
					</div>
				
					
				
					
					

				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/侵略乌贼娘/1/" style="text-decoration:none;color:#00AEAE;"> 侵略乌贼娘 </a>
					</div>
				
					<div style="background-color:#E0E0E0;">
						<a id ="root" href="/app/鬼灭之刃/1/" style="text-decoration:none;color:#00AEAE;"> 鬼灭之刃 </a>
					</div>
				
					
				
		</div>
		
		
		
		
		<div class="rightarea">

			
				
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-1" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://vs1.baduziyuan.com/20180120/JwDuqPLb/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://vs1.baduziyuan.com/20180120/JwDuqPLb/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-1', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第01集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第01集
								<br> 
									メール:http://vs1.baduziyuan.com/20180120/JwDuqPLb/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:1
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-2" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://vs1.baduziyuan.com/20180120/ymFRdxVv/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://vs1.baduziyuan.com/20180120/ymFRdxVv/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-2', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第02集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第02集
								<br> 
									メール:http://vs1.baduziyuan.com/20180120/ymFRdxVv/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:2
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-3" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19073_8caab04d/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19073_8caab04d/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-3', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第03集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第03集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19073_8caab04d/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:3
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-4" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19072_e6b8dd5c/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19072_e6b8dd5c/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-4', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第04集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第04集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19072_e6b8dd5c/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:4
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-5" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19071_47888266/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19071_47888266/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-5', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第05集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第05集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19071_47888266/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:5
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-6" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19070_44f60d1d/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19070_44f60d1d/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-6', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第06集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第06集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19070_44f60d1d/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:6
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-7" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19069_38bcf141/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19069_38bcf141/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-7', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第07集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第07集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19069_38bcf141/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:7
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-8" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19068_ce5247db/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19068_ce5247db/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-8', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第08集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第08集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19068_ce5247db/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:8
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-9" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19067_bed1098b/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19067_bed1098b/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-9', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第09集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第09集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19067_bed1098b/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:9
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-10" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19066_37a3b482/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19066_37a3b482/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-10', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第10集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第10集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19066_37a3b482/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:10
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-11" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19065_eb380234/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19065_eb380234/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-11', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第11集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第11集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19065_eb380234/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:11
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-12" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19064_50ae6f3a/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19064_50ae6f3a/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-12', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第12集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第12集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19064_50ae6f3a/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:12
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-13" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19063_f02d6d43/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19063_f02d6d43/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-13', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第13集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第13集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19063_f02d6d43/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:13
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-14" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19062_a9308d89/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19062_a9308d89/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-14', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第14集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第14集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19062_a9308d89/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:14
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
					<div style="float:left;width:33.33%;">

								<div>
									<section id="videoPlayer">
										<video ref="videoAuto" id="my-video-15" width="450" height="300" class="video-js vjs-default-skin vjs-big-play-centered" mute="true" controls preload="auto" poster="http://img.kuyun88.com/pic/uploadimg/2019-12/5785.jpg"  data-setup="{}" style="background-size:cover;">
											<source  src="http://haitang.kankan-kuyunzy.com/20200321/19061_8994c9d4/index.m3u8" type="application/x-mpegURL" id="target" > 
				
											<source src="http://haitang.kankan-kuyunzy.com/20200321/19061_8994c9d4/index.m3u8"  type="video/mp4" id="target" > 
										</video>
										
									</section>	
								
									<script src="https://vjs.zencdn.net/7.6.6/video.js"></script>
										<script type="text/javascript">
										
										
										
										var player = videojs('my-video-15', { "poster": "", "controls": "false" , }, function() {
											
											this.on('play', function() {
											window.document.title="斗罗大陆_第15集";
											console.log('正在播放');
												});
											this.on("click",function(){
											console.log('点击');
											});
											this.on('pause', function() {
											console.log("暂停中")
													});

											this.on('ended', function() {
											console.log('结束');
													})
											this.on("loadstart",function(){
												console.log("开始请求数据 ");
											})
											this.on("progress",function(){
												console.log("正在请求数据 ");
											})
											this.on("loadedmetadata",function(){
												console.log("获取资源长度完成 ")
											})
											this.on("canplaythrough",function(){
												console.log("视频源数据加载完成")
											})
											this.on("waiting", function(){
												console.log("等待数据")
											});;
											this.on("playing", function(){
												console.log("视频播放中")
											});	
											this.on("error", function(){
												console.log("加载错误")
											});
											this.on("seeking",function(){
												console.log("视频跳转中");
											})
											this.on("seeked",function(){
												console.log("视频跳转结束");
											})
											this.on("ratechange", function(){
												console.log("播放速率改变")
											});
											this.on("timeupdate",function(){
												console.log("播放时长改变");
											})
											this.on("volumechange",function(){
												console.log("音量改变");
											})
											this.on("stalled",function(){
												console.log("网速异常");
											})
											
									 
										});
									
											
									</script>					
								</div>
								
								

								
						
							<div >
						
								<p>
									名前:斗罗大陆_第15集
								<br> 
									メール:http://haitang.kankan-kuyunzy.com/20200321/19061_8994c9d4/index.m3u8;
								<br> 
									時間:11:47:42
								<br> 
									id:15
								<br> 
								</p>
							</div>	
								
						
								
							
							
					</div>	
			
		
		</div>
		
	


	</div>
	
	
	<br>
	<br>
	<div style="float:right;">
	
	<h5 align="right">当前页数:1</h5>
	<h5 align="right">总页数:928</h5>
	<h5 align="right">总数量:13911</h5>
	<h5 align="right"> 时间:2021-01-05 11:47:42</h5> 
	</div>

	

		



</div>


</body>
</html>
  • 1
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

佐倉

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值