Sure, you can change the timings by adjusting the positioning of the tweens or their durations like this...   // default tween duration is 0.5 seconds tl.to(".header1", { opacity: 1, y: -30, },0) .to(".header1", { opacity: 0, y: -60, },3) .to(".header2", { opacity: 1, y: -30, delay: 1, },3) .to(".header2", { opacity: 0, y: -60, },6) .to(".header3", { opacity: 1, y: -30, delay: 1, },6) The timeline is tied to the scroll distance - so think of duration as a ratio.
    • Like
    3