Think of it sorta like this: let tl = gsap.timeline({ scrollTrigger: {scrub: true, ...}}); tl.to(...); tl.add(() => { gsap.to(...); // non-scrubbed. Just a regular animation that's triggered at a certain spot in the timeline }); tl.to(...); tl.add(() => { //maybe you need to go to different values if it's going backwards... if (tl.scrollTrigger.direction === -1) { gsap.to(...); // backwards } else { gsap.to(...); // forwards } }); I hope that helps.
    • Like
    2