Jump to content
Search Community

Cassie last won the day on April 16

Cassie had the most liked content!

Cassie

Administrators
  • Posts

    4,919
  • Joined

  • Last visited

  • Days Won

    174

Blog Post Comments posted by Cassie

  1. Heya @Blizzart!

    No, nested would look like this...

    A scrollTrigger both on a timeline, and on one or more of the tweens inside the timeline.
     

    const tl1 = gsap.timeline({})
      .to('#jsScn23', 1, {
        top:'-200vh', 
        ease:Power1.easeInOut,
        scrollTrigger: {
          trigger: "#something",
          start: "top top",
          end: "+=500%",
        }
      })
    
      const scroll1 = ScrollTrigger.create({  
          trigger: "#jsScene1",
          start: "top top",
          end: "+=500%",
          animation: tl1
     });
     

     

    • Thanks 1
×
×
  • Create New...