How to change theme video?


Add your video in three required extensions(.mp4, .ogg, .webm) in the video directory plus, an image to be shown on devices that does not support html5 video and set path to them in your html.

<video preload="auto" autoplay loop class="video-bg js-video-bg" poster="video/video-preview-image.jpg" muted>
    <source src="video/your-video.mp4" type="video/mp4">
    <source src="video/your-video.webm" type="video/webm">
    <source src="video/your-video.ogv" type="video/ogg">
</video>
Tags: video

Last update:
2014-11-20 09:15
Author:
Daniel Verejan
Revision:
1.0
Average rating:0 (0 Votes)