console
window.onload=function(){
var oStart = document.getElementById('start');
var oEnd = document.getElementById('end');
var oPause = document.getElementById('pause');
var oSpeed = document.getElementById('speed');
var oVideo = document.getElementById('videoSource');
oStart.onclick=function(){
oVideo.play();
}
oPause.onclick=function(){
oVideo.pause();
}
oEnd.onclick=function(){
oVideo.pause();
oVideo.currentTime=0;
}
oSpeed.onclick=function(){
oVideo.play();oVideo.playbackRate = 4;
}
oVideo.ontimeupdate=function(){
var oPositionBar = document.getElementById('positionBar');
oPositionBar.value= (oVideo.currentTime/oVideo.duration*100);
}
}
<div>
<video id="videoSource" width="500px">
<source src="https://media.w3.org/2010/05/sintel/trailer.mp4" type="video/mp4">
</video>
<div id="durationbar">
<progress id="positionBar" value="0" max="100"></progress>
</div>
</div>
<button id="start">开始</button>
<button id="end">停止</button>
<button id="pause">暂停</button>
<button id="speed">2倍速度</button>
#durationbar{
width: 500px;
height: 20px;
}
#durationbar progress{
width: 100%;
height: 100%;
}