简单教程
提交运行
代码编辑器:
<p>该范例中,我们使用了 addEventListener() 方法为 video 元素添加 "onratechange" 事件。 playbackRate 属性用于修改视频的播放速度。</p> <video id="myVideo" width="320" height="176" autoplay controls> <source src="/static/i/html/html_video_1.mp4" type="video/mp4"> <source src="/static/i/html/html_video_1.ogg" type="video/ogg"> 您的浏览器不支持 HTML5 video 标签。 </video> <br> <button onclick="setPlaySpeed()" type="button">设置视频慢速播放</button> <script> // 获取 id="myVideo" 的 <video>; 元素 var vid = document.getElementById("myVideo"); // 设置视频播放速度为 0.3 (慢速) function setPlaySpeed() { vid.playbackRate = 0.3; } // 为 <video>; 添加 ratechange 事件,在视频的播放速度发送改变时执行函数,函数将弹出提示文本信息。 vid.addEventListener("ratechange", myFunction); function myFunction() { alert("onratechange 事件触发 - 视频播放速度已改变""); } </script> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: