Backgrounds

These modular elements can be readily used and customized in every layout across pages.

Background Image

Image Background

<section class="text-white text-center">
	<div style="background-image:url(assets/img/header-02.jpg);" class="bg-holder"></div>
	<div class="text-center">
		<h4>Image Background</h4>
	</div>
</section>

Parallax Backgrounds

Use .parallax class with .bg-holder class and .has-parallax to it's parent for effect.

JavaScript
<script src="assets/js/rellax.min.js"></script>
Image Background Parallax
<section class="text-white text-center has-parallax">
	<div class="bg-holder overlay overlay-2 parallax vh-50" style="background-image:url(assets/img/header-03.jpg);" data-rellax-speed="-10">
	</div>
	<div class="text-center">
		<h5>Image Background Parallax</h5>
	</div>
</section>
Video Background Parallax
<section class="text-white text-center has-parallax" id="header-video">
	<div class="bg-holder overlay overlay-2 parallax vh-50" style="background-image:url(assets/img/headers/header-coming-soon.png);" data-rellax-speed="-10">
		<video autoplay="autoplay" loop="loop" muted="muted">
			<source src="assets/videos/demo/video.mp4" type="video/mp4"/>
		</video>
	</div>
	<div>
		<h5>Video Background Parallax</h5>
	</div>
</section>

HTML5 Video Background

Video Background

<section class="text-white text-center" id="header-video">
	<div class="bg-holder overlay" style="background-image:url(assets/img/headers/header-coming-soon.png);">
		<video autoplay="autoplay" loop="loop" muted="muted">
			<source src="assets/videos/demo/video.mp4" type="video/mp4"/>
		</video>
	</div>
	<div>
		<h5>Video Background</h5>
	</div>
</section>

Youtube video

For more Details see YTPlayer Documentation

Youtube Video Background

<section class="text-center py-7">
	<div class="bg-holder overlay overlay-2" style="background-image:url(assets/img/headers/header-event.jpg);">
		<div class="youtube-background" data-property={"videoURL":"https://www.youtube.com/watch?v=hLpy-DRuiz0","startAt":10,"stopAt":584,"mute":true,"showYTLogo":false}></div>
	</div>
	
	<div class="text-center">
		<h5 class="text-white">Video Background</h5>		
	</div>	
</section>

Shades of overlay

Use following classess with .overlay class for different shades.

Image Background
(.overlay)
Image Background
(.overlay-0)
Image Background
(.overlay-1)
Youtube Background
(.overlay-2)
<section class="text-center py-7">
	<div class="bg-holder overlay overlay-2" style="background-image:url(assets/img/headers/header-event.jpg);">
		<div class="youtube-background" data-property={"videoURL":"https://www.youtube.com/watch?v=hLpy-DRuiz0","startAt":10,"stopAt":584,"mute":true,"showYTLogo":false}></div>
	</div>
	
	<div class="text-center">
		<h5 class="text-white">Video Background</h5>
		<h6 class="text-white">(.overlay-2)</h6>		
	</div>	
</section>