Jump to content
GreenSock

learner_7n

How can I make my logo smaller while coming ...

Moderator Tag

Recommended Posts

Hi,

 

I want to animate my logo using the following code but at the same time I would like some effects to be included in the below code.

 

For example I want the following animation using the below code:

 

TweenMax.fromTo(TA_mc, 6, {rotation:0, x:-300, y:-125, alpha:0}, {rotation:"-360", x:600, y:400, alpha:1, ease:Strong.easeOut});

 

And need the TA-mc to be smaller while start and then bigger at the end.

 

Help me please.

Link to comment
Share on other sites

Just tween its scaleX and scaleY or width and height too. Like:

 

TweenMax.fromTo(TA_mc, 6, {rotation:0, x:-300, y:-125, alpha:0, scaleX:1, scaleY:1}, {rotation:"-360", x:600, y:400, alpha:1, scaleX:2, scaleY:2, ease:Strong.easeOut});

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.
×