new TextTrack(options)
Create an instance of this class.
Parameters:
Name | Type | Default | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object | {} | Object of option names and values Properties
|
- See:
Extends
Members
-
activeCues :TextTrackCueList
-
The list text track cues that are currently active for this TextTrack.
-
allowedEvents_
-
cuechange - One or more cues in the track have become active or stopped being active.
- Overrides:
- Track#allowedEvents_
-
cues :TextTrackCueList
-
The text track cue list for this TextTrack.
-
readonly default :boolean
-
If this track was set to be on or off by default. Cannot be changed after creation.
-
readonly id :string
-
The id of this track. Cannot be changed after creation.
- Overrides:
-
readonly kind :string
-
The kind of track that this is. Cannot be changed after creation.
- Overrides:
-
label :string
-
The label of this track. Cannot be changed after creation.
- Overrides:
Fires:
-
readonly language :string
-
The two letter language code for this track. Cannot be changed after creation.
- Overrides:
-
mode :string
-
Set the mode of this TextTrack to a valid TextTrack~Mode. Will not be set if setting to an invalid mode.
Fires:
Methods
-
addCue(cue)
-
Add a cue to the internal list of cues.
Parameters:
Name Type Description cue
TextTrack~Cue The cue to add to our internal list
-
addEventListener()
-
An alias of EventTarget#on. Allows
EventTarget
to mimic the standard DOM API.- Overrides:
- See:
-
dispatchEvent()
-
An alias of EventTarget#trigger. Allows
EventTarget
to mimic the standard DOM API.- Overrides:
- See:
-
off(type, fn)
-
Removes an
event listener
for a specific event from an instance ofEventTarget
. This makes it so that theevent listener
will no longer get called when the named event happens.Parameters:
Name Type Description type
string | Array.<string> An event name or an array of event names.
fn
EventTarget~EventListener The function to remove.
- Overrides:
-
on(type, fn)
-
Adds an
event listener
to an instance of anEventTarget
. Anevent listener
is a function that will get called when an event with a certain name gets triggered.Parameters:
Name Type Description type
string | Array.<string> An event name or an array of event names.
fn
EventTarget~EventListener The function to call with
EventTarget
s- Overrides:
-
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 anevent listener
with EventTarget#on that calls EventTarget#off on itself.Parameters:
Name Type Description type
string | Array.<string> An event name or an array of event names.
fn
EventTarget~EventListener The function to be called once for each event name.
- Overrides:
-
removeCue(removeCue)
-
Remove a cue from our internal list
Parameters:
Name Type Description removeCue
TextTrack~Cue The cue to remove from our internal list
-
removeEventListener()
-
An alias of EventTarget#off. Allows
EventTarget
to mimic the standard DOM API.- Overrides:
- See:
-
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 noevent listeners
for an event then nothing will happen.If the name of the
Event
that is being triggered is inEventTarget.allowedEvents_
. Trigger will also call theon
+uppercaseEventName
function.Example: 'click' is in
EventTarget.allowedEvents_
, so, trigger will attempt to callonClick
if it exists.Parameters:
Name Type Description event
string | EventTarget~Event | Object The name of the event, an
Event
, or an object with a key of type set to an event name.- Overrides:
Type Definitions
-
Kind
-
All possible
TextTrackKind
s -
Mode
-
All possible
TextTrackMode
s
Events
-
labelchange
-
An event that fires when label changes on this track.
Note: This is not part of the spec!
Type:
- Overrides:
-
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!
Type: