Jump to content
Search Community

Leaderboard

Popular Content

Showing content with the highest reputation on 12/25/2022 in all areas

  1. The solution worked like magic! Thank you very much. That's a quick and perfect answer.
    1 point
  2. This isn't a question. I'm posting this here because it took me about half a day to realize what's going on. Problem: If you use a from tween the animation get's stuck in the from position OR it animates a very small portion of the start of this tween. Solution: Go to your index.js file and remove the <React.StrictMode> wrapper around your rendered Root component. Explanation (My best guess): The tween actually is fully animating. You can check with onStart/onComplete callbacks. Strict mode causes your components to mount twice. Since GSAP has its own state management system you've created two instances of the from tween. These are competing with each other. Apologies if this is written in the documentation somewhere. I didn't see it. Happy Tweening.
    1 point
×
×
  • Create New...