代码编辑器:
x
1
<video id="myVideo" width="320" height="240" controls>
2
<source src="/static/i/html/html_video_1.mp4" type="video/mp4">
3
<source src="/static/i/html/html_video_1.ogg" type="video/ogg">
4
您的浏览器不支持 video 标签。
5
</video>
6
<p>点击按钮添加新的文本轨道</p>
7
<button onclick="myFunction()">点我</button>
8
<p><strong>注意:</strong>所有主流浏览器都不支持 addTextTrack() 方法</p>
9
<script>
10
var x = document.getElementById("myVideo");
11
function myFunction(){
12
var y = x.addTextTrack("caption");
13
y.addCue(new TextTrackCue("Test text", 01.000, 04.000,"","","",true));
14
}
15
</script>
16