hwthorn/parallaxify

Opposite parallax?

Closed this issue ยท 8 comments

Hi!

This is a great plugin and I have it all working which is good but at the moment the image I have the parallax on is moving TOWARDS the mouse at the moment and I want it to move AWAY from the mouse move (like in the opposite direction) if you get me?

Is this possible? And if so, how do I go about doing it as I am at a total loss...

Any help would be greatly appreciated.

Thank you.

Replied you on email already emma, not exactly it goes with opposite direction. but i think try this to get some idea http://jsfiddle.net/X7UwG/854/ and maybe you can achieve with this plugin as well.

Thanks for the help guys. It's sorted now and looks great! :)

@emmadalby How did you sort it out? Care to share? ;)

Thanks to a previos ticket, here's the code:

  // defining your own positioning function
  $.parallaxify.positionProperty.inverted = {
      setPosition: function($element, left, originalLeft, top, originalTop) {
        $element.css('transform', 'translate(' + (originalLeft - left) + 'px, ' + (originalTop - top) + 'px)');
      }
  };
  // using your own positioning function
  $('#parallax').parallaxify({
      positionProperty: 'inverted',
      responsive: true,
      motionType: "natural",
      mouseMotionType: "gaussian",
      motionAngleX: 90,
      motionAngleY: 90,
      alphaFilter: 0.5,
      adjustBasePosition: true,
      alphaPosition: 0.025
  });

Hi @miroamarillo

Sorry, only just seen this. I just used negative values instead of positive ones as suggested above by @hwthorn

Worked great.

@emmadalby Thanks!

No problem ๐Ÿ˜Š