TextTrackCue.track
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
track
は TextTrackCue
インターフェイスの読み取り専用プロパティで、このキューが所属する TextTrack
オブジェクトを返します。
値
TextTrack
オブジェクトです。
例
以下の例では、新しい VTTCue
(TextTrackCue
を継承)を作成し、それをトラックに追加しています。 track
の値はコンソールに表示されます。
js
let video = document.querySelector("video");
let captiontrack = video.addTextTrack("captions", "Captions", "en");
captiontrack.mode = "showing";
let cue1 = new VTTCue(0, 0.9, "Hildy!");
captiontrack.addCue(cue1);
console.log(cue1.track); // a TextTrack object.
仕様書
Specification |
---|
HTML Standard # dom-texttrackcue-track |
ブラウザーの互換性
BCD tables only load in the browser