@ZachSaucier
Thanks for helping me out... I appreciate it.
Seizing the opportunity... a quick question.
Is there a way to fire a animation on ScrollTirgger before the elements enters on the viewport?
Something like this:
ScrollTrigger.batch(this.unwrapTexts, {
onEnter: (elements) => {
gsap.fromTo($(elements).find('.wrapped-p'), { yPercent: 140 }, { duration: 4, yPercent: 0, ease: 'expo.out', stagger: .06 })
},
start: 'top 110%',
once: true
})
Thanks in advance.