最新的Web開發教程
 

HTML音頻/視頻DOM ratechange事件

<HTML音頻/視頻DOM參考

更改視頻和警報的播放速度,該速度被改變:

// Get the <video> element with id="myVideo"
var vid = document.getElementById("myVideo");

// Set the current playback speed of the video to 0.3 (slow motion)
function setPlaySpeed() {
    vid.playbackRate = 0.3;
}

// Assign a ratechange event to the <video> element, and execute a function if the playing speed of the video is changed. The function will alert some text
vid.onratechange = function() {myFunction()};

function myFunction() {
    alert("The playing speed of the video was changed");
}
試一試»

定義和用法

當音頻/視頻的播放速度改變(當用戶切換到慢動作或快進模式等)時,會出現ratechange事件。

此事件是由調用playbackRate音頻/視頻對象,它設置或返回音頻/視頻的當前回放速度的財產。


瀏覽器支持

在表中的數字指定完全支持該事件的第一個瀏覽器的版本。

事件
ratechange 9

句法

在HTML:

< audio|video onratechange="myScript"> Try it

在JavaScript:

audio|video .onratechange=function(){myScript}; Try it

在JavaScript中,使用addEventListener()方法:

audio|video .addEventListener("ratechange", myScript ); Try it

注意: addEventListener()在Internet Explorer 8和更早版本不支持的方法。


技術細節

支持的HTML標籤: <audio> and <video>
支持的JavaScript對象: Audio, Video

<HTML音頻/視頻DOM參考