Jump to content
GreenSock

Ron Itelman

transformOrigin issues

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

I am unable to get the transformOrigin property to be centered within the object. It is being set to 0px 0px regardless of whether I have a 'transformOrigin' property defined or not. The codepen illustrates this issue: https://codepen.io/ron-itelman/pen/xzqMWN?editors=1010

Screen Shot 2018-06-11 at 2.17.46 PM.png

Screen Shot 2018-06-11 at 2.17.37 PM.png

See the Pen xzqMWN?editors=1010 by ron-itelman (@ron-itelman) on CodePen

Link to comment
Share on other sites

transformOrigin is for transforms. It won't work with size animations like width/height. Width/height starts at top/left. Scale should give you the desired results.

 

TweenMax.from('#square', 2, {opacity:"0", scale:0, ease:"Bounce.easeOut", transformOrigin:"50% 50%"});

 

Hopefully that helps. Happy tweening.

:)

 

 

  • Like 4
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×