VTTCue: snapToLines-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.

Die snapToLines-Eigenschaft der VTTCue-Schnittstelle ist ein Boolean, der angibt, ob die VTTCue.line-Eigenschaft eine ganze Anzahl von Linien oder ein Prozentsatz der Videoabmessung ist.

Wert

Ein Boolean.

Beispiele

Im folgenden Beispiel wird ein neuer VTTCue erstellt, dann wird der Wert von snapToLines auf true gesetzt. Der Wert wird anschließend auf der Konsole ausgegeben.

js
let video = document.querySelector("video");
let track = video.addTextTrack("captions", "Captions", "en");
track.mode = "showing";

let cue1 = new VTTCue(0, 0.9, "Hildy!");
cue1.snapToLines = true;
console.log(cue1.snapToLines);

track.addCue(cue1);

Spezifikationen

Specification
WebVTT: The Web Video Text Tracks Format
# dom-vttcue-snaptolines

Browser-Kompatibilität

BCD tables only load in the browser