jquery-parallax.js 237 B

12345678910
  1. $.fn.parallax = function ( resistance, mouse )
  2. {
  3. $el = $( this );
  4. TweenLite.to( $el, 0.2,
  5. {
  6. x : -(( mouse.clientX - (window.innerWidth/2) ) / resistance ),
  7. y : -(( mouse.clientY - (window.innerHeight/2) ) / resistance )
  8. });
  9. };