SimpleParallax.js Versions Save

Simple and tiny JavaScript library that adds parallax animations on any images

5.6.1

3 years ago
  • #2cdb1f - ✨ add a isInit class
  • #7cc7564 - 🐛 ensure simple parallax is initialized on SVG at page load

5.5.1

3 years ago

The delay parameter has been set at 0 by default. This is sometimes causing an issue on iOS devices. Investigation and resolution still in progress via (#47)[https://github.com/geosigno/simpleParallax.js/issues/47]

  • #806835 - :ambulance: set the delay at 0 by default #47

5.5.0

3 years ago
  • #806835 - ✨ add a refresh method #50
  • #8e2fdb - 🎨 various typo / lint / logic
  • #59812c - 📝 more transparency about supported browsers #46

5.4.1

3 years ago
  • #9b1c85 - 🐛 fix issue with lazy loaded images #45

5.4.0

4 years ago
  • #bc258a - ✨ add support for videos #41
  • #b6a994 - ✨ add new customWrapper setting #39

5.3.0

4 years ago

This release add one parameter to simpleParallax - maxTransition. The maxTransition setting can be used to stop the parallax transition after a given percentage. By default, it translate from 0% to 100% of the user viewport. You can change it here to any percentage you want.

  • #23ff83 - ✨ add maxTransition parameter

5.2.0

4 years ago

This release is fixing one issue when the translation was applied after the transition, so the first translation on load time looked buggy. It also removes the breakpoint parameter, as this should be managed outside the simpleParallax plugin. It adds one new customContainer parameter for those who want to apply the parallax on a custom scroll container (rather than the document itself).

  • #76dfa35 - ⚡️ #26 separate CSS transition and transform to avoid buggy effect on loadtime
  • #d65531d - 🔥 remove breakpoint setting
  • #635788c - ✨ Custom scroll container option #32

5.1.0

4 years ago

This release improve global stability.

  • #63ed06 - ✨ simpleParallax can now be initialized from a string as element
  • #63c552 - ♻️ refactoring destroy method
  • #5831f4 - 🎨 run eslint --fix
  • #06bcee - ⚡️ improve the way resize method is handle

5.0.2

4 years ago

This release fixes an issue when simpleParallax was initiliazed with a HTML Collection (eg: getElementsByClassName). A new helper has been created to convert all entry elements into an array.

  • 🐛 #68a5bf - fix Uncaught TypeError: this.element.addEventListener is not a function

5.0.1

4 years ago

This release fixes an issue when simpleParallax was loaded via script tag. The libraryExport parameter was not set as "default" so the following error appeared "Uncaught TypeError: simpleParallax is not a constructor".

  • 🐛 #bb99df - fix Uncaught TypeError: simpleParallax is not a constructor #17