Hey @rvp   Sure thing! Say you had the following timeline scrubbed over 1000px. It's 3 seconds long so let's split it into thirds.   ScrollTrigger.create({ animation: tl, start: 'top top', end: '+=1000', scrub: true, }); tl.to('.one',{ duration: 1, rotate: 360 }) .to('.two',{ duration: 2, rotate: 360 })   The first tween would last 1/3 of the distance ( 333.33px ) and the second would last 2/3 of the distance ( 666.66px )          one                 
    • Like
    2