x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
</head>
6
<body>
7
8
<video id="video1" controls="controls">
9
<source src="/examples/mov_bbb.mp4" type="video/mp4">
10
<source src="/examples/mov_bbb.ogg" type="video/ogg">
11
您的浏览器不支持 HTML5 video 标签。
12
</video>
13
14
<script>
15
myVid = document.getElementById("video1");
16
myVid.addEventListener("canplaythrough", function() {
17
alert("Can play through video without stopping");
18
});
19
</script>
20
21
<p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p>
22
23
</body>
24
</html>