Quick search results

No results found
Search
Last active 2 days ago
News about
23 Blogs
Tom King (Works at )
Avaible for freelance work
F
on Facebook
View website
T
on Twitter
View website
G
Google+
View website

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sunt in culpa qui quis.

Yesterday, 4:56 PM

Sunt in culpa qui officia deserunt mollit anim id est laborum. officia deserunt mollit anim id est laborum officia deserunt mollit anim

27 January 2016
Parallax

Parallax is an effect where the background content or image in this case, is moved at a different speed than the foreground content while scrolling. Check out an example below to get a better idea of it.

Parallax HTML Structure
<div class="parallax-container">
    <div class="parallax"><img src="images/parallax1.jpg"></div>
</div>
Initialization
$(document).ready(function(){
    $('.parallax').parallax();
});   
Parallax Customization

The parallax container height is what defines how much of the image can be seen. This is set to a default of 500px. You can add your own style to override this.


.parallax-container {
    height: "your height here";
}