HTML <track> 标签


示例

带有两种语言字幕轨道的视频:

<video width="320" height="240" controls>
  <source src="forrest_gump.mp4" type="video/mp4">
  <source src="forrest_gump.ogg" type="video/ogg">
  <track src="fgsubtitles_en.vtt" kind="subtitles" srclang="en" label="English">
  <track src="fgsubtitles_no.vtt" kind="subtitles" srclang="no" label="Norwegian">
</video>

定义和用法

这个<track>标签指定文本轨道<音频>或者<视频>元素。

该元素用于指定字幕、字幕文件或其他包含文本的文件,这些文件在媒体播放时应可见。

track采用 WebVTT 格式(.vtt 文件)。


浏览器支持

表中的数字指定完全支持该元素的第一个浏览器版本。

Element
<track> 23.0 10.0 31.0 6.0 12.1

可选属性

Attribute Value Description
default default Specifies that the track is to be enabled if the user's preferences do not indicate that another track would be more appropriate
kind captions
chapters
descriptions
metadata
subtitles
Specifies the kind of text track
label text Specifies the title of the text track
src URL Required. Specifies the URL of the track file
srclang language_code Specifies the language of the track text data (required if kind="subtitles")

全局属性

这个<track>标签还支持HTML 中的全局属性


事件属性

这个<track>标签还支持HTML 中的事件属性


相关页面

HTML 教程:HTML视频

HTML 教程:HTML 音频

HTML DOM 参考:追踪对象


默认 CSS 设置

没有任何。