<html>
<body>
<p>本实例中,我们使用 HTML DOM 向 video 元素添加了 "onratechange" 事件。 playbackRate 属性用于设置视频的播放速度。</p>
<video id="myVideo" width="320" height="240" autoplay controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
您的浏览器不支持 HTML5 video。
</source></source></video><br>
<button onclick="setPlaySpeed()" type="button">设置视频播放速度为慢速</button>
<script>
// 获取 id="myVideo" 的 video 元素
var x = document.getElementById("myVideo");
// 设置当前视频的播放速度为 0.3 (慢速)
function setPlaySpeed() {
x.playbackRate = 0.3;
}
// 向 video 元素中添加 onratechange 事件,如果播放速度改变执行函数
x.onratechange = function() {myFunction()};
function myFunction() {
alert("视频的播放速度已改变");
}
</script>
</body>
</html>