I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
Some textScroll Animations with ScrollTrigger (DesignCourse)
Animate me
트리거 기준선을 가운데로 잡고, 요소의 높이를 고려해서 어느 부분이 통과할 때 에니메이션을 발생시킬 것인지 정하는 방법
let tl = gsap.timeline({ scrollTrigger: { trigger: '.animated-element', start: '-100% center', end: '200% center', // scrub: true, // (toggleActions = onEnter onLeave onEnterBack onLeaveBack) toggleActions: 'play reverse play reverse', markers: true, } }) tl.to('.animated-element', { x: innerWidth/2 - 150 })