Hi,
I'm animating a bunch of elements with the class name circle in a timeline using the to() method, like so:
let tl = gsap.timeline()
tl.to('.circle', {
duration: 1.5,
repeat: -1,
y: 100,
}, 0)
At the moment, all of the animations have the same progress point at which they begin (0).
I would like to specify a different start progress point for each element animated with the tween shown above.
So I could start the animation of the first circle element at 50% progress, the next at 75% progress, or whatever, etc.
How can I do this when animating a collection of elements with to()?