GSAP icon indicating copy to clipboard operation
GSAP copied to clipboard

GSAP (GreenSock Animation Platform), a JavaScript animation library for the modern web

Results 18 GSAP issues
Sort by recently updated
recently updated
newest added

### Update deprecated links in gsap-core.d.ts to point to the correct release notes. The link https://greensock.com/3-migration/ leads to a ‘Not Found’ page, and I believe https://greensock.com/blog/3-release-notes is the most suitable...

**Code**: https://codepen.io/Antonzo/pen/NWQxrYe **Issue**: After the timeline reaches 2 (or more) loops in play mode and the progress is set to 0 afterwards, it is automatically set to 1 right after....

https://github.com/greensock/GSAP/blob/f836a3f0002d6ea00f456a461c7e2976e0ec3f38/types/gsap-core.d.ts#L146 I believe that the boolean "repeatRefresh" should be included with StaggerVars. It appears to work but Typescript complains. Including it in this interface should quiet the complaint. If you'd...

I've noticed an unexpected behavior in GSAP animations that might be a bug. Here's the scenario: 1. Create a GSAP animation using fromTo() 2. Call kill() on the animation 3....

When the time lands on values that are close (but not exactly equal) to a multiple of the duration of a tween, the onRepeat call will not be called. Here...

I believe there is a typing issue with the `Context` interface in `gsap-core.d.ts` ```typescript interface Context { ... add(methodName: string, func: Function, scope?: Element | string | object): Function; add(func:...

fix : https://github.com/greensock/GSAP/issues/589

Well, it is all in the title. Every tween has a then method to wait for a promise. If the tween has a duration of zero the promise is not...