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

HTML5 视频播放(video),JavaScript控制视频的实例代码

程序员文章站 2023-10-30 13:55:52
这篇文章主要介绍了HTML5 视频播放(video),JavaScript控制视频的实例代码,需要的朋友参考下吧... 18-10-08...

具体代码如下所示:

 

<html lang="en">
<head>
<meta charset="utf-8">
<title>documenttitle>
<style>
figcaption {
text-align: center;
line-height: 150px;
font-family: "microsoft yahei";
font-size: 24px;
}
.player {
width: 720px;
height: 360px;
margin: 10px auto;
border: 1px solid #000;
background-color: #000;
position: relative;
border-radius: 6px;
}
.player video {
width: 720px;
height: 360px;
}
.controls {
width: 700px;
height: 40px;
background-color: rgba(255,255,0,0.3);
position: absolute;
bottom: 10px;
left: 10px;
border-radius: 10px;
}
.switch {
position: absolute;
width: 22px;
height: 22px;
background-color: red;
left: 10px;
top: 9px;
border-radius: 50%;
}
.progress {
width: 432px;
height: 10px;
position: absolute;
background-color: rgba(255,255,255,0.4);
left: 40px;
top: 15px;
border-radius: 4px;
overflow: hidden;
}
.curr-progress {
width: 0%;
height: 100%;
background-color: #fff;
}
.time {
width: 120px;
height: 20px;
text-align: center;
line-height: 20px;
font-size: 12px;
color: #fff;
position: absolute;
left: 510px;
top: 10px;
}
.extend {
position: absolute;
width: 20px;
height: 20px;
background-color: red;
right: 10px;
top: 10px;
}
style>
head>
<body>
<figure>  
<figcaption>视频案例figcaption>
<div class="player">
<video src="11.mp4">video>
<div class="controls">
<a href="#" class="switch">a>
<div class="progress">
<div class="curr-progress">div>
div>
<div class="time">
<span class="curr-time">00:00:00span>/
<span class="total-time">00:00:00span>
div>
<a href="#" class="extend">a>
div>
div>
figure>
<script>
var video = document.queryselector('video');
var playbtn = document.queryselector('.switch');
var currprogress = document.queryselector('.curr-progress');
var currtime = document.queryselector('.curr-time');
var totaltime = document.queryselector('.total-time');
var extend = document.queryselector('.extend');
var ttime = 0;
playbtn.onclick = function() {
if(video.paused){  // 如果视频是暂停的
video.play();    //play()播放  load()重新加载  pause()暂停
}else{
video.pause();
}
}
//当视频能播放(已经通过网络加载完成)时
video.oncanplay = function() {
ttime = video.duration;  //获取视频总时长(单位秒)
var ttimestr = gettimestr(ttime);
totaltime.innerhtml = ttimestr;
}
//当视频当前播放时间更新的时候
video.ontimeupdate = function() {
var ctime = video.currenttime;  //获取当前播放时间 
var ctimestr = gettimestr(ctime);
console.log(ctimestr);
currtime.innerhtml = ctimestr;
currprogress.style.width = ctime/ttime*100+"%";
}
extend.onclick = function() {
video.webkitrequestfullscreen();  //视频全屏
}
//将以秒为单位的时间变成“00:00:00”格式的字符串
function gettimestr(time) {
var h = math.floor(time/3600);
var m = math.floor(time%3600/60);
var s = math.floor(time%60);
h = h>=10?h:"0"+h;
m = m>=10?m:"0"+m;
s = s>=10?s:"0"+s;
return h+":"+m+":"+s;
}
script>
body>
html>

总结

以上所述是小编给大家介绍的html5 视频播放(video),javascript控制视频的实例代码,希望对大家有所帮助