代码编辑器:
x
1
<p>该范例中,我们使用了 addEventListener() 方法为 video 元素添加 "onratechange" 事件。 playbackRate 属性用于修改视频的播放速度。</p>
2
3
<video id="myVideo" width="320" height="176" autoplay controls>
4
<source src="/static/i/html/html_video_1.mp4" type="video/mp4">
5
<source src="/static/i/html/html_video_1.ogg" type="video/ogg">
6
您的浏览器不支持 HTML5 video 标签。
7
</video>
8
<br>
9
10
<button onclick="setPlaySpeed()" type="button">设置视频慢速播放</button>
11
12
<script>
13
// 获取 id="myVideo" 的 <video>; 元素
14
var vid = document.getElementById("myVideo");
15
16
// 设置视频播放速度为 0.3 (慢速)
17
function setPlaySpeed()
18
{