Jump to content
Search Community

Akarisuu

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Akarisuu

  1. Hello!

    On version 3.10, when you use .set() or .from() with the ScrollTrigger plugin applied as the first call, they behave like a method on gsap object without any plugins - they just get added as inline style immediately after loading the script.

    Today I updated my project to version 3.11 and to my surprise, most of the animations were behaving weirdly (easy to notice at fade in animations). After looking things up in DevTools i noticed that now in 3.11 .set() and .from() launches only after getting between the ScrollTrigger's values - start and end. Not sure if it's a bug or an intended thing, but if its a feature I can't find any mentions about this on GSAP's GitHub update page.

    Example for 3.10 (fadein working as intended)
     

        gsap.fromTo(
          fadeInRef.current?.children || [],
          {
            autoAlpha: 0,
          },
          {
            scrollTrigger: {
              trigger: fadeInRef.current,
              start: 'bottom bottom',
              once: true,
              end: '+=0',
            },
            stagger: 0.1,
            autoAlpha: 1,
          },
        );


    Example for 3.11 (it's a fix for code above)
     

        gsap.set(fadeInRef.current?.children || [], { autoAlpha: 0 });
        gsap.to(fadeInRef.current?.children || [], {
          scrollTrigger: {
            trigger: fadeInRef.current,
            start: 'bottom bottom',
            once: true,
            end: '+=0',
          },
          stagger: 0.1,
          autoAlpha: 1,
        });

     

×
×
  • Create New...