为什么 HTML5 视频无法播放?
<!DOCTYPE HTML>
<html>
<body>
<video src="http://vimeo.com/moogaloop.swf?clip_id=12680155" controls="controls">
your browser does not support the video tag
</video>
</body>
</html>
<!DOCTYPE HTML>
<html>
<body>
<video src="http://vimeo.com/moogaloop.swf?clip_id=12680155" controls="controls">
your browser does not support the video tag
</video>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 IE,则视频标签在 IE 中不起作用。另外,你的 HTML 似乎没有 。元素和相应的结束标记,我不确定这是否会对 HTML5 产生不良影响。
The video tag does not work in IE, if that's the browser you're using. Also, your HTML does not seem to have a <head> element and corresponding closing tag, I'm not sure if that might impact things poorly in HTML5.
在我的 HTML5 视频标签中,我使用 .mp4、.ogv、.mpg 视频格式的视频。然后它可以在所有最新的 HTML5 支持的浏览器中运行。
In my HTML5 Video Tag, I use video in .mp4, .ogv, .mpg video formats. Then it runs in all the latest HTML5 supported browsers.