The TextTrack.mode
property is a string which indicates the text track's mode. You can read this value to determine the current mode, and you can change this value to switch modes.
var mode = TextTrack.mode; TextTrack.mode = "disabled" | "hidden" | "showing";
A DOMString
which indicates the track's current mode. The text track mode is one of the values listed below, under Text track mode constants.
The text track mode—sometimes identified using the IDL enum TextTrackMode
—must be one of the following values:
"disabled"
"hidden"
TextTrack.cues
property). The user agent is keeping a list of the active cues (in the track's activeCues
property) and events are being fired at the corresponding times, even though the text isn't being displayed."showing"
activeCues
list is being maintained and events are firing at the appropriate times; the track's text is also being drawn appropriately based on the styling and the track's kind
.When the mode is "showing"
, text tracks are performed differently depending on their kind
. In general:
kind
is "subtitles"
or "captions"
are rendered with the cues overlaid over the top of the video.kind
is "descriptions"
are presented in a non-visual form (for example, the text might be spoken to describe the action in the video).kind
is "chapters"
are used by the user agent or the Web site or Web app to construct and present an interface for navigating the named chapters, where each cue in the list represents a chapter in the media. The user can then navigate to the desired chapter, which begins at the cue's start position and ends at the cue's end position.tbd
Specification | Status | Comment |
---|---|---|
WebVTT: The Web Video Text Tracks Format The definition of 'mode' in that specification. | Candidate Recommendation | Initial specification. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 18 | 12 | 31
|
10 | 15 | 6 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 4.4 | 18 | No | 31 | No | 7.1 | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TextTrack/mode