I am using parallax js (http://pixelcog.github.io/parallax.js/) in my new web site. In five places I am using this and without any content only with the parallax images it is working really fine in all the browsers.
But with the content, parallax is not working smoothly in Firefox, IE and Safari browsers. It seems like jerking the both parallax image and its div content. Content of the parallax div moving first then the parallax image is moving.
Here is my code snippet of the parallax setup.
<section class="my-class parallax-window" data-parallax="scroll" data-image-src="img/my-image.jpg">
<!-- my content going here... -->
</section>
.parallax-window { min-height: 400px; background: transparent; }
How can I make this smooth for all the browsers..?