Capítulo 403 de 411
The secret to building gorgeous sequences with precise timing is understanding the position parameter which is used in many methods throughout GSAP. This one super-flexible parameter controls the placement of your tweens, labels, callbacks, pauses, and even nested timelines, so you'll be able to literally place anything anywhere in any sequence.
3"someLabel". If the label doesn't exist, it'll be added to the end of the timeline."<" The start of previous animation**. Think of < as a pointer back to the start of the previous animation.">" - The end of the previous animation**. Think of > as a pointer to the end of the previous animation."+=" and "-=" prefixes indicate relative values. When a number follows "<" or ">", it is interpreted as relative so "<2" is the same as "<+=2". Examples:"+=1" - 1 second past the end of the timeline (creates a gap)"-=1" - 1 second before the end of the timeline (overlaps)"myLabel+=2" - 2 seconds past the label "myLabel".to( target, vars, **position** )
3"someLabel"."<" The start of previous animation**.">" - The end of the previous animation**."+=" and "-=" prefixes indicate relative values.