The way I'm implementing the video is the correct way to create a background video.
How do I play the background video automatically by applying only css3 styling or is it necessary to add jQuery to play the video automatically.
How to hide or remove video playback buttons or tools
#background-video {
position: absolute;
top: -157.906px;
left: 0px;
width: 1349px;
height: 758.813px;
transform: matrix(1, 0, 0, 1, 0, 0);
}
video {
height: 100%;
width: 100%;
display: block;
}
<div id="background-video ">
<video poster="http://www.themesindustry.com/html/bizone/video/thumb.jpg">
<source src="http://www.themesindustry.com/html/bizone/video/video.mp4" type="video/mp4">
</video>
</div>
Inside the video tag add controls autoplay preload="auto"