This interface also inherits properties from web.EventTarget
.
This interface also inherits properties from `web.EventTarget`.
(active-cues this)
Property.
A TextTrackCueList object listing the currently active set of track cues. Track cues are active if the current playback position the media is between the cues' start and end times. Thus, for cues such as captions or subtitles, the active cues are currently displayed.
Property. A TextTrackCueList object listing the currently active set of track cues. Track cues are active if the current playback position the media is between the cues' start and end times. Thus, for cues such as captions or subtitles, the active cues are currently displayed.
(add-cue this & args)
Method.
Adds a cue (specified as a TextTrackCue object to the track's of cues.
Method. Adds a cue (specified as a TextTrackCue object to the track's of cues.
(cues this)
Property.
A TextTrackCueList which contains all of the track's cues.
Property. A TextTrackCueList which contains all of the track's cues.
(id this)
Property.
A DOMString which identifies the track, if it has one. If it have an ID, then this value is an empty string (""). If the TextTrack associated with a <track> element, then the track's ID matches element's ID.
Property. A DOMString which identifies the track, if it has one. If it have an ID, then this value is an empty string (""). If the TextTrack associated with a <track> element, then the track's ID matches element's ID.
(in-band-metadata-track-dispatch-type this)
Property.
Returns a DOMString which indicates the track's in-band metadata dispatch type. needs details
Property. Returns a DOMString which indicates the track's in-band metadata dispatch type. needs details
(kind this)
Property.
Returns a DOMString indicating what kind of text track the TextTrack The value must be one of those in the TextTrackKind enum.
Property. Returns a DOMString indicating what kind of text track the TextTrack The value must be one of those in the TextTrackKind enum.
(label this)
Property.
A human-readable DOMString which contains the text track's label, one is present; otherwise, this is an empty string (""), in which a custom label may need to be generated by your code using other of the track, if the track's label needs to be exposed to the
Property. A human-readable DOMString which contains the text track's label, one is present; otherwise, this is an empty string (""), in which a custom label may need to be generated by your code using other of the track, if the track's label needs to be exposed to the
(language this)
Property.
A DOMString which specifies the text language in which the text contents is written. The value must adhere to the format specified the Tags for Identifying Languages (BCP 47) document from the just like the HTML lang attribute. For example, this can be "en-US" United States English or "pt-BR" for Brazilian Portuguese.
Property. A DOMString which specifies the text language in which the text contents is written. The value must adhere to the format specified the Tags for Identifying Languages (BCP 47) document from the just like the HTML lang attribute. For example, this can be "en-US" United States English or "pt-BR" for Brazilian Portuguese.
(mode this)
Property.
The web.media.TextTrack
interface's mode property is a string
and controlling the text track's mode: disabled, hidden, or showing.
`var mode = textTrack.mode;
textTrack.mode = "disabled" | "hidden" | "showing";`
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrack/mode
Property. The `web.media.TextTrack` interface's mode property is a string and controlling the text track's mode: disabled, hidden, or showing. `var mode = textTrack.mode; textTrack.mode = \"disabled\" | \"hidden\" | \"showing\";` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrack/mode`
(remove-cue this & args)
Method.
Removes a cue (specified as a TextTrackCue object from the track's of cues.
Method. Removes a cue (specified as a TextTrackCue object from the track's of cues.
(set-active-cues! this val)
Property.
A TextTrackCueList object listing the currently active set of track cues. Track cues are active if the current playback position the media is between the cues' start and end times. Thus, for cues such as captions or subtitles, the active cues are currently displayed.
Property. A TextTrackCueList object listing the currently active set of track cues. Track cues are active if the current playback position the media is between the cues' start and end times. Thus, for cues such as captions or subtitles, the active cues are currently displayed.
(set-cues! this val)
Property.
A TextTrackCueList which contains all of the track's cues.
Property. A TextTrackCueList which contains all of the track's cues.
(set-id! this val)
Property.
A DOMString which identifies the track, if it has one. If it have an ID, then this value is an empty string (""). If the TextTrack associated with a <track> element, then the track's ID matches element's ID.
Property. A DOMString which identifies the track, if it has one. If it have an ID, then this value is an empty string (""). If the TextTrack associated with a <track> element, then the track's ID matches element's ID.
(set-in-band-metadata-track-dispatch-type! this val)
Property.
Returns a DOMString which indicates the track's in-band metadata dispatch type. needs details
Property. Returns a DOMString which indicates the track's in-band metadata dispatch type. needs details
(set-kind! this val)
Property.
Returns a DOMString indicating what kind of text track the TextTrack The value must be one of those in the TextTrackKind enum.
Property. Returns a DOMString indicating what kind of text track the TextTrack The value must be one of those in the TextTrackKind enum.
(set-label! this val)
Property.
A human-readable DOMString which contains the text track's label, one is present; otherwise, this is an empty string (""), in which a custom label may need to be generated by your code using other of the track, if the track's label needs to be exposed to the
Property. A human-readable DOMString which contains the text track's label, one is present; otherwise, this is an empty string (""), in which a custom label may need to be generated by your code using other of the track, if the track's label needs to be exposed to the
(set-language! this val)
Property.
A DOMString which specifies the text language in which the text contents is written. The value must adhere to the format specified the Tags for Identifying Languages (BCP 47) document from the just like the HTML lang attribute. For example, this can be "en-US" United States English or "pt-BR" for Brazilian Portuguese.
Property. A DOMString which specifies the text language in which the text contents is written. The value must adhere to the format specified the Tags for Identifying Languages (BCP 47) document from the just like the HTML lang attribute. For example, this can be "en-US" United States English or "pt-BR" for Brazilian Portuguese.
(set-mode! this val)
Property.
The web.media.TextTrack
interface's mode property is a string
and controlling the text track's mode: disabled, hidden, or showing.
`var mode = textTrack.mode;
textTrack.mode = "disabled" | "hidden" | "showing";`
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrack/mode
Property. The `web.media.TextTrack` interface's mode property is a string and controlling the text track's mode: disabled, hidden, or showing. `var mode = textTrack.mode; textTrack.mode = \"disabled\" | \"hidden\" | \"showing\";` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrack/mode`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close