主頁(yè) > 知識(shí)庫(kù) > HTML5 視頻播放(video),JavaScript控制視頻的實(shí)例代碼

HTML5 視頻播放(video),JavaScript控制視頻的實(shí)例代碼

熱門標(biāo)簽:南寧點(diǎn)撥外呼系統(tǒng)哪家公司做的好 黃島區(qū)地圖標(biāo)注 電銷機(jī)器人電話用什么卡 當(dāng)涂高德地圖標(biāo)注 四川點(diǎn)撥外呼系統(tǒng) 成都智能外呼系統(tǒng)平臺(tái) 云南大理400電話申請(qǐng)官方 鎮(zhèn)江智能外呼系統(tǒng)有效果嗎 江蘇智能電銷機(jī)器人哪家好

具體代碼如下所示:

 

<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();
}
}
//當(dāng)視頻能播放(已經(jīng)通過(guò)網(wǎng)絡(luò)加載完成)時(shí)
video.oncanplay = function() {
tTime = video.duration;  //獲取視頻總時(shí)長(zhǎng)(單位秒)
var tTimeStr = getTimeStr(tTime);
totalTime.innerHTML = tTimeStr;
}
//當(dāng)視頻當(dāng)前播放時(shí)間更新的時(shí)候
video.ontimeupdate = function() {
var cTime = video.currentTime;  //獲取當(dāng)前播放時(shí)間 
var cTimeStr = getTimeStr(cTime);
console.log(cTimeStr);
currTime.innerHTML = cTimeStr;
currProgress.style.width = cTime/tTime*100+"%";
}
extend.onclick = function() {
video.webkitRequestFullScreen();  //視頻全屏
}
//將以秒為單位的時(shí)間變成“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>

總結(jié)

以上所述是小編給大家介紹的HTML5 視頻播放(video),JavaScript控制視頻的實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

標(biāo)簽:廣西 酒泉 南京 十堰 淮安 咸寧 佳木斯 西寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML5 視頻播放(video),JavaScript控制視頻的實(shí)例代碼》,本文關(guān)鍵詞  HTML5,視頻,播放,video,JavaScript,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML5 視頻播放(video),JavaScript控制視頻的實(shí)例代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于HTML5 視頻播放(video),JavaScript控制視頻的實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章