jQuery-Parallax icon indicating copy to clipboard operation
jQuery-Parallax copied to clipboard

**NO LONGER MAINTAINED** Used to recreate the Nike Better World parallax effect

Results 15 jQuery-Parallax issues
Sort by recently updated
recently updated
newest added

Hello, i've fixed the main script and updated the example file and documentation file. Before all parameters of .parallax(p1 , p2 , p3) was completely ignored and replaced at runtime...

Made the parallax speedfactor adjust the current position parameter, not the initial position parameter

This merge includes only update towards libraries used in bower to avoid conflicts and breaks when this library is used with bower

The plugin works perfect, but (in my opinion), when you have an element with parallax at the bottom of the page, when the viewport reaches that element you should see...

Per bower/bower.json-spec@a325da3 Also their maintainer says they probably won't ever use it: http://stackoverflow.com/questions/24844901/bowers-bower-json-file-version-property

I added requestAnimationFrame, as you should never bind scroll and resize events without using this.

Currently the script stores only the offset().top of the first element matched by jQuery, it should instead store top for every element.

Rename parameter and change position. New JS (load before body element) for auto-load all parallax elements: $(document).ready(function(){ $('.ab-parallax').each(function() { xpos = $(this).attr('parallax-xpos'); ypos = $(this).attr('parallax-ypos'); speed = $(this).attr('parallax-speed'); $(this).parallax(xpos, ypos,...

I have added a simple "alterHeightPosition" parameter for control with precision the default position of the background image. Exemple without parallax(**"50%", 0.8**): http://puu.sh/ciEgw/f585fa5b17.jpg (white margin bellow) Exemple with my modification...