Jump to content
Search Community

strange behaviour TweenMax with transform svg

chriswyl test
Moderator Tag

Go to solution Solved by Diaco,

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 want to apply the transformations (with rotation) of text and when he tries to do it single-function TweenMax, looks bad.

 

Only after prior transformation giving the rotation 0 and then the correct angle, everything looks all right

 

Can you explain to me if I do something wrong?

See the Pen BKmepj by amonk (@amonk) on CodePen

Link to comment
Share on other sites

  • Solution

Hi chriswyl  :)

 

it's about transform matrix multiplication , in your third example , pls check the result with remove x,y attributes from text and set transform to this :

transform=" translate(100,100) rotate(40 100,100) "

but if you want to have that result you liked , pls try this :

TweenMax.set($("#t2"), { attr:{ x:x , y:y } , rotation:rot , svgOrigin:x+' '+y });
  • Like 5
Link to comment
Share on other sites

Good to know that these lines are not equivalent

TweenMax.set($("#t2"), { attr:{ x:x , y:y } , rotation:rot , svgOrigin:x+' '+y });

and

TweenMax.set($("#t2"), { x:x , y:y , rotation:rot , svgOrigin:x+' '+y });

Thanks Diaco

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.
×
×
  • Create New...