是可以更改默认html5视频皮肤/颜色
问题描述:
是否可以更改默认html5视频播放器的颜色或完成皮肤?
Is it possible to change default html5 video player's colors or complete skin?
<video id="sampleMovie" src="HTML5Sample.mov" controls></video>
答
没有办法重新设置浏览器原生HTML5视频控件。但是,您可以完全忽略它们(通过删除controls属性),并使用HTML,CSS和HTML视频API实现您自己的控件(好的参考在这里)。
There's no way of re-skinning the browsers native HTML5 video controls. However, you can omit them completely (by removing the controls attribute), and implement your own controls using HTML, CSS and the HTML video API (good reference here).
这里有一个指南这将让你开始。
There's a guide here which will get you started.