Does anyone know if it's possible to assign a label to a sequence when that sequence is already relative to another label?
for instance:
tl.to("#redBox", 1, {x:550}, "start")
.to("#blueBox", 1, {x:550}, "start+=0.05", "second")
.to("#greenBox", 1 {x:550}, "second+=1");
You can see the codepen here http://codepen.io/anon/pen/vLtlg
But from this snippit you see that the bluebox starts relative to start, and I want greenbox to start relative to bluebox. Is this possible?