当前位置: 代码迷 >> HTML/CSS >> 请大神指教~MP4文件如何加载进html中
  详细解决方案

请大神指教~MP4文件如何加载进html中

热度:135   发布时间:2013-03-27 11:22:42.0
请大神指教~MP4文件怎么加载进html中?
请大神指教~MP4文件怎么加载进html中? 

------解决方案--------------------
如果你使用的是IE9+或Chrome最新版本,下面的代码可以做到
将MP4在HTML中播放:

<!DOCTYPE html>
<html>
<head>
    <title>HTML5 video</title>
</head>
<body>
    <video id="movies" controls width="400px" height="300px">
        <source src="video/Wildlife.mp4">
    </video>
</body>
</html>

但FireFox等浏览器是不支持的
  相关解决方案