html5 学习笔记一
video元素(audio元素类似)
支持ogg,mpeg4,webm三种媒体
1 <video src="movie.ogg" controls="controls">
2 </video>
2 </video>
control 属性供添加播放、暂停和音量控件。
<video> 与 </video> 之间插入的内容是供不支持 video 元素的浏览器显示的:
<video src="movie.ogg" width="320" height="240" controls="controls">
Your browser does not support the video tag.
</video>
Your browser does not support the video tag.
</video>
video 元素允许多个 source 元素。source 元素可以链接不同的视频文件。浏览器将使用第一个可识别的格式
1 <video width="320" height="240" controls="controls">
2 <source src="movie.ogg" type="video/ogg">
3 <source src="movie.mp4" type="video/mp4">
4 Your browser does not support the video tag.
5 </video>
2 <source src="movie.ogg" type="video/ogg">
3 <source src="movie.mp4" type="video/mp4">
4 Your browser does not support the video tag.
5 </video>
<video> 标签的属性