$(() => { function photoWallScroll() { gsap.registerPlugin(ScrollTrigger); gsap.set('#Tdabout .ab_item01', { x: '-8%' }); gsap.set('#Tdabout .ab_item02', { x: '-8%' }); gsap.set('#Tdabout .ab_item03', { x: '25%' }); var tl = gsap.timeline({ scrollTrigger: { trigger: '#Tdabout', start: 'top bottom', end: 'bottom top', scrub: 0.8 } }); tl.to('#Tdabout .ab_item01', { x: '0%', ease: 'none' }, 0); tl.to('#Tdabout .ab_item02', { x: '0%', ease: 'none' }, 0); tl.to('#Tdabout .ab_item03', { x: '-10%', ease: 'none' }, 0); } photoWallScroll(); });