배움/퍼블

GSAP / 가로축 스크롤이동

long_tea 2024. 1. 31. 07:28

<script>
let scroll = gsap.timeline({
scrollTrigger: {
trigger: "섹션클래스",
start: "top right",
scrub: 1,
end: "bottom right",
},
});
let list = document.querySelectorAll("옆으로 스크롤될 클래스");
scroll
.from(list, { x: "100%", duration: 4, ease: "none" })
.to(list, { x: "0%", duration: 3 });
</script>

 

좋은 사수를 둬서 행복하다 하하

매번 쉽고 정확하게 알려주신다.