Typically you wouldn't need something like this because you'd engineer things differently like Zach pointed out, but just for the record if you really need to wire up a ScrollTrigger so that it just animates between two labels, you can pause() the master timeline and use a tween of that timeline's playhead! let master = gsap.timeline({paused: true}); master.to(...); // do whatever master.addLabel("label1", 2).addLabel("label2", 5); let labelTween = master.tweenFromTo("label1", "label2"); Sc
    • Thanks
    • Like
    3