<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
</head>
<body>
<video id="myVideo" width="320" height="240" controls>
<source src="/statics/demosource/movie.mp4" type="video/mp4">
<source src="/statics/demosource/movie.ogg" type="video/ogg">
您的浏览器不支持 HTML5 video。
</video>
<p>点击以下按钮修改音量值,或者点击右边的音量按钮来调整音量。</p>
<button onclick="setHalfVolume()" type="button">设置音量为 0.2</button>
<button onclick="setFullVolume()" type="button"设置音量为 1.0</button>
<p id="demo"></p>
<script>
var x = document.getElementById("myVideo");
x.addEventListener("volumechange", getVolume);
function getVolume() {
document.getElementById("demo").innerHTML = "视频音量为: " + x.volume;
}
function setHalfVolume() {
x.volume = 0.2;
}
function setFullVolume() {
x.volume = 1.0;
}
</script>