在HTML中播放视频
在HTML5之前, 视频只能在浏览器使用插件播放(如Flash).
HTML5 元素指定在网页中嵌入视频的标准方法.
浏览器支持
表中的数字指定第一个完全支持的浏览器版本
元素<video>4.09.03.54.010.5HTML 元素
在HTML中,使用 元素显示一个视频:
<video width=”320″ height=”240″ controls> <source src=”/static/assets/tutorials/front/html/movie.mp4″ type=”video/mp4″> <source src=”/static/assets/tutorials/front/html/movie.ogg” type=”video/ogg”>Your browser does not support the video tag.</video>让偶试试:http://codingdict.com/article/1460