本文介绍了HTML5中的YouTube视频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在HTML5中播放YouTube视频?
How do I play a YouTube video in HTML5?
推荐答案
这可能就是您要寻找的内容:
This is probably what you're looking for:Force HTML5 youtube video
如果用户选择加入,则可能会播放HTML5视频:
<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/VIDEO_ID" frameborder="0"> </iframe>
HTML5-by-defualt视频 - 注意?html5 = 1
:
HTML5-by-defualt video - notice the ?html5=1
:
<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/VIDEO_ID?html5=1" frameborder="0"> </iframe>
HTML5视频播放方式是使用<视频>
标记。这篇文章显示可以完成,但它看起来不是最佳选择。
The "HTML5" way of doing video would be to use a <video>
tag. This post shows that it can be done, but it doesn't look like the best option. Show Youtube video source into HTML5 video tag?
这篇关于HTML5中的YouTube视频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!