代码拉取完成,页面将自动刷新
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Video.js events example</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet">
</head>
<body>
<!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
<div role="main">
<video id="my_video_1" class="video-js vjs-default-skin" controls
preload="auto" width="640" height="480">
<source src="Nikhil Banerjee-BBC performance.webm" type='video/mp4'>
</video>
</div>
<script src="http://vjs.zencdn.net/c/video.js"></script>
<script>
_V_("my_video_1").ready(function(){
var myPlayer = this;
myPlayer.addEvent('durationchange', function () {
myPlayer.currentTime(56);
myPlayer.play();
});
myPlayer.addEvent('timeupdate', function () {
if (myPlayer.currentTime() >= 60) {
myPlayer.pause();
}
})
});
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。