Can someone briefly explain what is the best way to play 2 tweens/animations in parallel in the same timeline using GSAP 3?
Example:
tl = gsap.timeline();
tl
.to( 'EL1', 1, {
prop: value,
})
.to( 'EL2', 1, {
prop: value
}, '-=1');
I would do it this way: '-=1'
. Do you all have a better solution for me?