Html5的video雖然可用controls來展示控件,並進行控制播放暫停等,但是不同的浏覽器顯示的效果可能不一樣,所以很多時候我們需要使用Dom來進行自定義的一些操作和控制。下面是一個小例子。
當然效果不是很美觀,若想好看的可以自己設置CSS樣式等。
復制代碼代碼如下:
<div id="video_div" style="text-align:center;">
<button onclick="playPause()">播放/暫停</button>
<button onclick="toBig()">大</button>
<button onclick="toNormal()">中</button>
<button onclick="toSmall()">小</button>
<video id="myVideo" width="500" height="250" style="margin-top:15px;">
<source src="demo.mp4" type="video/mp4" />
<source src="demo.ogg" type="video/ogg" />
您的浏覽器不支持此Html5 視頻標簽。
</video>
</div>
復制代碼代碼如下:
<script type="text/Javascript">
var myVideo=document.getElementById("myVideo");
function playPause()
{
if (myVideo.paused)
myVideo.play();
else
myVideo.pause();
}
function toBig()
{
myVideo.width=560;
}
function toNormal()
{
myVideo.width=420;
}
function toSmall()
{
myVideo.width=320;
}
</script>
需要注意的是在所有屬性中,只有 videoWidth 和 videoHeight 屬性是立即可用的。
在視頻的元數據已加載後,其他屬性才可用。