实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<video width="320" height="240" controls autoplay>
6
  <source src="movie.ogg" type="video/ogg">
7
  <source src="/upload/love/movie.mp4" type="video/mp4">
8
  <source src="movie.webm" type="video/webm">
9
  <object data="/upload/love/movie.mp4" width="320" height="240">
10
    <embed width="320" height="240" src="/upload/love/intro.swf">
11
  </object>
12
</video>
13
14
</body>
15
</html>