Skip to content

Releases: wagerfield/parallax

v3.1

10 Sep 10:49
Compare
Choose a tag to compare

v3.1 is here, featuring a vastly improved Readme and finally working npm releases again! That's right, you can now just do npm install parallax-js and be up-to-date again 🎆

Additionally, I have those features for you:

  • Breaking: added selector option, now by default all child elements of the scene will become layers, see Readme on how to restore legacy behaviour
  • added hoverOnly option
  • added inputElement option
  • fixed bug when using deviceMotion events
  • polyfilled Object.assign for IE compatibility
  • added ready callback
  • added destroy method
  • some slight performance improvements

v3.0

06 May 11:43
Compare
Choose a tag to compare

Proudly presenting the first release after nearly 3 years!

Let's get the breaking changes out of the way first:

  • the jQuery/Zepto version has been removed, use new Parallax($('#scene').get(0)) if you need to
  • pointer events are disabled for layers by default, see the #interactivity section of the Readme for details on how to enable them
  • HTML inline attributes take priority over the initial JS parameters
  • support for old IE versions might be broken, please let me know if so and I'll try to fix it

Those were necessary to bring you these improvements and new features:

  • general repository cleanup, more readable code, nicer coding style ✨
  • a great build flow for contributors and those curious about the source code 🏗
  • with a better documentation 📝
  • lightning fast npm install process ⚡️
  • you can now actually require and/or import parallax-js 😮
  • bugfixes of course 👾
  • increased performance and compatibility, especially for mobile devices 📱
  • depth can be set independently for X and Y axis 👁
  • adjustable precision, set to the best value for both performance and optics 🎯

Let us know what you think! And a big shoutout to all contributors, thank you for making this possible 💖

Choose compiled.zip from below if you want a drag-and-drop JS file.

v2.1.3

12 May 17:34
Compare
Choose a tag to compare

Updated references.

v2.1.2

26 Apr 13:37
Compare
Choose a tag to compare

v2.1.1

26 Apr 13:05
Compare
Choose a tag to compare
  • Added origin method to the API.

v2.1.0

26 Apr 12:45
Compare
Choose a tag to compare
  • Added origin control to the behaviours.

v2.0.1

25 Apr 19:30
Compare
Choose a tag to compare
  • Fixed motion calculation bug.

v2.0.0

25 Apr 19:24
Compare
Choose a tag to compare
  • Rewrote layer motion to use px rather than %, allowing for layers to have a zero width and height footprint, which in turn allows for interactive elements to be positioned on multiple layers without blocking one another.
  • Created interactive.html to demonstrate the aforementioned functionality.
  • Optimised internal css method so that prefixed properties are cached.

v1.1.1

20 Apr 21:51
Compare
Choose a tag to compare
  • Fixed minor typo bug that broke the jQuery version of the library.

v1.1.0

20 Apr 21:35
Compare
Choose a tag to compare
  • Updated mouse input to always be relative to the window rather than the page using event.client[X|Y] rather than event.page[X|Y].
  • Added relativeInput behaviour to switch the mouse input coordinate system to the element passed to the Parallax constructor. See README for details.
  • Added clipRelativeInput behaviour to limit the mouse input influence to the bounds of the element passed to the Parallax constructor. See README for details.
  • Created a new example: relative.html to demonstrate this new functionality.