is it possible to change default html5 video skin/color

Johnny picture Johnny · Dec 9, 2013 · Viewed 23.3k times · Source

Is it possible to change default html5 video player's colors or complete skin?

<video id="sampleMovie" src="HTML5Sample.mov" controls></video>

enter image description here

Answer

net.uk.sweet picture net.uk.sweet · Dec 9, 2013

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.