THEOplayer > TextTrackStyle
Inherits from EventDispatcher<TextTrackStyleEventMap> . See parent page for inherited properties and methods.
The text track style API.
Signature:
export interface TextTrackStyle extends EventDispatcher<TextTrackStyleEventMap>
- Available since v2.27.4.
Property |
Type |
Description |
---|---|---|
|
The background color for the text track. |
|
EdgeStyle |
The edge style of the text, represented by a value from the following list: |
|
|
The font color for the text track. |
|
|
The font family for the text track. |
|
|
The font size for the text track. |
|
|
The window color for the text track. |
The background color for the text track.
Signature:
backgroundColor: string | undefined;
This targets the area directly behind the text.
- red
will set the background color of the text track to red.
- #ff0000
will set the background color of the text track to red.
- rgba(255,0,0,0.5)
will set the background color of the text track to red, with 50% opacity.
The edge style of the text, represented by a value from the following list:
- 'none'
- 'dropshadow'
- 'raised'
- 'depressed'
- 'uniform
Signature:
edgeStyle: EdgeStyle | undefined;
The font color for the text track.
Signature:
fontColor: string | undefined;
- red
will set the color of the text to red.
- #ff0000
will set the color of the text to red.
- rgba(255,0,0,0.5)
will set the color of the text to red, with 50% opacity.
The font family for the text track.
Signature:
fontFamily: string | undefined;
The font size for the text track.
Signature:
fontSize: string | undefined;
Can be a percentage value such as '50%', '75%', '100%', '150%' or '200%'.
The window color for the text track.
Signature:
windowColor: string | undefined;
This targets the area covering the full width of the text track.
- red
will set the background color of the window of the text track to red.
- #ff0000
will set the background color of the window of the text track to red.
- rgba(255,0,0,0.5)
will set the background color of the window of the text track to red, with 50% opacity.