很简单,我有一个<video>
标签如下:
<video id="video" controls preload>
<source src="media/video.mp4" type="video/mp4">
<source src="media/video.webm" type="video/webm">
<source src="media/video.ogv" type="video/ogg">
Your browser does not support the video tag.
</video>
相当标准。但是,我希望使用内置媒体播放器在移动设备上打开视频,就像在 iPhone 上观看来自 Safari 的 YouTube 视频一样。
我怎么能做到这一点?移动网站是使用 jQuery Mobile 构建的。
另外,我想我在某处读到从标签中删除type
属性会增加兼容性。<source>
这是真的?