Each track owns its own span — a start and end progress — and how its value changes within that span. As the playhead moves from 0 to 1, you check which tracks' spans the current point falls inside, and apply each active track's value to the element. Because one track can start before another finishes, you get overlapping motion: "moving, then growing partway through, then fading out while still growing."
The implementation gives each track a [start, end] progress range; when the current progress falls inside it, you renormalize to (progress − start) / (end − start) to get that track's own 0–1 interpolation. After Effects' graph editor and GSAP's Timeline are the canonical tools that expose this structure through a GUI or API — you lay tracks per layer and drag bars to line up overlaps visually.
With two or three tracks, hand-tuning the spans is fine. Past four or five, keeping the overlaps straight in code gets error-prone — that's the point to reach for a dedicated timeline tool instead.
When to use
Use it for compound sequences where several properties must overlap on different timings — logo intros, onboarding sequences. Overkill for a transition that only changes one property.