The template uses the Jarallax library to create smooth parallax scrolling effects.
Parallax allows background images to move at a slower speed than the page content,
adding depth and a modern visual experience.
To add a parallax background image, wrap your section with the .jarallax class
and include an <img> tag with the .jarallax-img class inside.
<section data-speed="0.2" class="jarallax">
<img class="jarallax-img" src="images/bg.jpg" alt="">
<div class="container">
<h2>Your Content Here</h2>
<p>Add text, images, or buttons above the parallax background.</p>
</div>
</section>
- data-speed – Controls the parallax movement speed (range: 0.1 to 1.0).
Lower values = slower movement (more subtle effect).
- images/bg.jpg – Path to your background image file.
Tip: Use large, high-quality background images (min. 1920×1080) for best results.