Jump to content
GreenSock

jesper.landberg

Style not applied on onUpdate, why?

Moderator Tag

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

See bottom of my pen, I'm trying to animate clip-path, but the style is not applied to the bg element. When I console log(clipPath.value) it goes from the two values correctly, but nothing is applied. No console errors. Can anyone see why?

See the Pen KBLqOW?editors=0010 by ReGGae (@ReGGae) on CodePen

Link to comment
Share on other sites

GSAP seems to be doing exactly what you asked, but I believe you're missing a "px" (unit) in your circle value. 
 

//BAD: 
value: `circle(${window.innerWidth * 1.25} at 50% 50%)`

//GOOD: 
value: `circle(${window.innerWidth * 1.25}px at 50% 50%)`

 

Does that help? 

  • Like 4
Link to comment
Share on other sites

10 hours ago, GreenSock said:

GSAP seems to be doing exactly what you asked, but I believe you're missing a "px" (unit) in your circle value. 
 


//BAD: 
value: `circle(${window.innerWidth * 1.25} at 50% 50%)`

//GOOD: 
value: `circle(${window.innerWidth * 1.25}px at 50% 50%)`

 

Does that help? 

lol.. always the small things, thanks for saving me some additional hours of staring:P

  • Like 1
  • Haha 1
Link to comment
Share on other sites

No problem - it happens to all of us. I've had plenty of those occasions myself ;) 

  • Like 2
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.
×