Constructor
new TextTrack(options)
Create an instance of this class.
Name | Type | Default | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | Object | {} | Object of option names and values Properties
|
- Source
- See
Extends
Members
activeCues :TextTrackCueList
The list text track cues that are currently active for this TextTrack.
- Source
(protected) allowedEvents_
cuechange - One or more cues in the track have become active or stopped being active.
- Overrides
- Source
cues :TextTrackCueList
The text track cue list for this TextTrack.
- Source
(readonly) default :boolean
If this track was set to be on or off by default. Cannot be changed after creation.
- boolean
- Source
(readonly) id :string
The id of this track. Cannot be changed after creation.
- string
- Overrides
- Source
(readonly) kind :string
The kind of track that this is. Cannot be changed after creation.
- string
- Overrides
- Source
label :string
The label of this track. Cannot be changed after creation.
- string
- Overrides
- Source
(readonly) language :string
The two letter language code for this track. Cannot be changed after creation.
- string
- Overrides
- Source
mode :string
Set the mode of this TextTrack to a valid TextTrack~Mode. Will not be set if setting to an invalid mode.
- string
- Source
Methods
addCue(cue)
Add a cue to the internal list of cues.
Name | Type | Description |
---|---|---|
cue | TextTrack~Cue | The cue to add to our internal list |
- Source
addEventListener()
An alias of EventTarget#on. Allows EventTarget
to mimic the standard DOM API.
- Overrides
- Source
any(type, fn)
This function will add an event listener
that gets triggered only once and is removed from all events. This is like adding an array of event listener
s with EventTarget#on that calls EventTarget#off on all events the first time it is triggered.
Name | Type | Description |
---|---|---|
type | string | | An event name or an array of event names. |
fn | function | The function to be called once for each event name. |
- Overrides
- Source
dispatchEvent()
An alias of EventTarget#trigger. Allows EventTarget
to mimic the standard DOM API.
- Overrides
- Source
off(type, fn)
Removes an event listener
for a specific event from an instance of EventTarget
. This makes it so that the event listener
will no longer get called when the named event happens.
Name | Type | Description |
---|---|---|
type | string | | An event name or an array of event names. |
fn | function | The function to remove. |
- Overrides
- Source
on(type, fn)
Adds an event listener
to an instance of an EventTarget
. An event listener
is a function that will get called when an event with a certain name gets triggered.
Name | Type | Description |
---|---|---|
type | string | | An event name or an array of event names. |
fn | function | The function to call with |
- Overrides
- Source
one(type, fn)
This function will add an event listener
that gets triggered only once. After the first trigger it will get removed. This is like adding an event listener
with EventTarget#on that calls EventTarget#off on itself.
Name | Type | Description |
---|---|---|
type | string | | An event name or an array of event names. |
fn | function | The function to be called once for each event name. |
- Overrides
- Source
removeCue(removeCue)
Remove a cue from our internal list
Name | Type | Description |
---|---|---|
removeCue | TextTrack~Cue | The cue to remove from our internal list |
- Source
removeEventListener()
An alias of EventTarget#off. Allows EventTarget
to mimic the standard DOM API.
- Overrides
- Source
trigger(event)
This function causes an event to happen. This will then cause any event listeners
that are waiting for that event, to get called. If there are no event listeners
for an event then nothing will happen.
If the name of the Event
that is being triggered is in EventTarget.allowedEvents_
. Trigger will also call the on
+ uppercaseEventName
function.
Example: 'click' is in EventTarget.allowedEvents_
, so, trigger will attempt to call onClick
if it exists.
Name | Type | Description |
---|---|---|
event | string | | The name of the event, an |
- Overrides
- Source
Type Definitions
Kind
All possible TextTrackKind
s
- Source
Mode
All possible TextTrackMode
s
- Source
Events
labelchange
An event that fires when label changes on this track.
Note: This is not part of the spec!
- Overrides
- Source
modechange
An event that fires when mode changes on this track. This allows the TextTrackList that holds this track to act accordingly.
Note: This is not part of the spec!
- Source