I am trying to create a very simple parallax scrolling effect just jQuery, CSS and an image but the problem is that it is not very smooth and very jerky.
My object is to have a image move from the top right of the page to the bottom left as the user scrolls down the page.
I need some help in achieving and more polished page, but either fixing my existing js or if you know how to implement a parallax plugin thats even better.
I am able to send over all the required files if nessessary.
I am trying to create a very simple parallax scrolling effect just jQuery, CSS and an image but the problem is that it is not very smooth and very jerky.
My object is to have a image move from the top right of the page to the bottom left as the user scrolls down the page.
I need some help in achieving and more polished page, but either fixing my existing js or if you know how to implement a parallax plugin thats even better.
I am able to send over all the required files if nessessary.
Here is my current code:
Javascript:
HTML
<div id="slash-1"><img src="img/slash.png"></div>CSS
#slash-1 { position: absolute; top: 300px; left: 960px; }You should use
$(window). To get the scroll distance, just use$(window).scrollTop():See the demo here ⇒ http://jsfiddle.net/tovic/43eG7/58/
I think you can develop the rest themselves :)