<HTML Ses / Video DOM Referans
Örnek
Hız değiştirildi bir video ve uyarının oynama hızını değiştirme:
// 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");
}
Kendin dene " Tanımı ve Kullanımı
Ses / video oynarken hızı değiştiğinde ratechange olayı oluşur (like when a user switches to a slow motion or fast forward mode) .
Bu olay tarafından çağrılır playbackRate ayarlar veya bir ses / video mevcut oynatma hızını döndürür Ses / Video Nesne, mülkiyet.
Tarayıcı Desteği
Tablodaki rakamlar tamamen olayı destekleyen ilk tarayıcı sürümü belirtin.
Olay | |||||
---|---|---|---|---|---|
ratechange | Evet | 9.0 | Evet | Evet | Evet |
Sözdizimi
HTML'de:
< audio|video onratechange=" JavaScript:
audio|video .onratechange=function(){ JavaScript olarak, kullanılarak addEventListener() metodu:
audio|video .addEventListener("ratechange", myScript ); Try it Not: addEventListener() metodu Internet Explorer 8 ve önceki sürümlerinde desteklenmez.
Teknik detaylar
Desteklenen HTML etiketleri: <audio> and <video> Desteklenen JavaScript nesneleri: Audio, Video