Jump to content
Search Community

SVG animation Safari

Poulsh test
Moderator Tag

Go to solution Solved by Jonathan,

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

  • Solution

Hello Poulsh and Welcome to the GreenSock Forum!

 

I'm not near my computer right now. But looking at your codepen it looks like a webkit bug, i notice you are animating the CSS top property. You should really be animating y instead! Animating top or left translate the element on a pixel level. Whereas animating x and y animate on a sub-pixel level making it buttery smooth.

 

For example, so this

.to("#GreetingCard", 1, {css:{top:-100}, ease:Power1.easeOut}, "greetingUP")

Would be this:

.to("#GreetingCard", 1, {css:{y:-100}, ease:Power1.easeOut}, "greetingUP")

You would need to change top to y (translateY)

 

Basically you would only use position top, right, bottom, and left when you set the initial position of your elements using position relative or absolute. And then you would use CSS transforms like x, y, and z when animating.

 

And keep in mind that SVG only supports animating using 2D transforms. Animating CSS transforms will always be more smoother than animating top and left, due to the sub-pixel rendering.

 

Also some additional information on what you mean by incorrect rendering ?

 

Thanks :)

  • Like 2
Link to comment
Share on other sites

Hey, has the Codepen for this been deleted? Maybe it's a Codepen limitation / error, but given that this is a community centred around shared learning, it would be helpful if any Codepen's related to the thread were preserved, so that others can reference and learn from them. Thanks. :)

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