VTTRegion
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Want more support for this feature? Tell us why.
The VTTRegion interface of the WebVTT API describes a portion of the video to render a VTTCue onto.
Constructor
VTTRegion()-
Creates a new
VTTRegionobject instance.
Instance properties
VTTRegion.id-
A string that identifies the region.
VTTRegion.width-
Represents the width of the region, as a percentage of the video's width.
VTTRegion.lines-
Represents the height of the region, in number of lines.
VTTRegion.regionAnchorX-
Represents the region anchor X offset, as a percentage of the region's width.
VTTRegion.regionAnchorY-
Represents the region anchor Y offset, as a percentage of the region's height.
VTTRegion.viewportAnchorX-
Represents the viewport anchor X offset, as a percentage of the video's width.
VTTRegion.viewportAnchorY-
Represents the viewport anchor Y offset, as a percentage of the video's height.
VTTRegion.scroll-
An enumerated value indicating how existing cues in the region move when a new cue is added.
Examples
const region = new VTTRegion();
region.width = 50; // Set the region to 50% of the video's width
region.lines = 4; // Render cues in 4 lines
region.viewportAnchorX = 25; // Place the region 25% from the left edge of the video
const cue = new VTTCue(2, 3, "Cool text to be displayed");
cue.region = region; // This cue will be drawn only within this region.
Specifications
| Specification |
|---|
| WebVTT: The Web Video Text Tracks Format> # the-vttregion-interface> |