//tweens are inserted at and relative to a label's position var tl = gsap.timeline(); tl.to("#green", {duration: 1, x: 750})
//add blueGreenSpin label 1 second after end of timeline .add("blueGreenSpin", "+=1")
//add tween at blueGreenSpin label
.to("#blue", {duration: 2, x: 750, rotation: 360}, "blueGreenSpin")
//insert tween 0.5 seconds after blueGreenSpin label .to("#orange", {duration: 2, x: 750, rotation: 360}, "blueGreenSpin+=0.5");