Horizontal "containerAnimation"
Scroll this page vertically and you'll see a horizontal fake-scrolling section where a container is animated on the x-axis using a ScrollTrigger animation. With containerAnimation you can trigger animations when certain elements inside that container enter the viewport horizontally! It's like a ScrollTrigger inside of a ScrollTrigger. 🤯
Scroll down
Scroll down to animate horizontally >
gsap.to(".box-1", {
y: -130,
duration: 2,
ease: "elastic",
scrollTrigger: {
trigger: ".box-1",
containerAnimation: scrollTween,
start: "left center",
toggleActions: "play none none reset"
}
});
Fire an animation at a particular spot...
box-1
gsap.to(".box-2", {
y: -120,
backgroundColor: "#1e90ff",
ease: "none",
scrollTrigger: {
trigger: ".box-2",
containerAnimation: scrollTween,
start: "center 80%",
end: "center 20%",
scrub: true
}
});
...or scrub it back & forth with the scrollbar
box-2
ScrollTrigger.create({
trigger: ".box-3",
containerAnimation: scrollTween,
toggleClass: "active",
start: "center 60%"
});
Toggle a CSS class
box-3
ScrollTrigger.create({
trigger: ".green",
containerAnimation: scrollTween,
start: "center 65%",
end: "center 51%",
onEnter: () => console.log("enter"),
onLeave: () => console.log("leave"),
onEnterBack: () => console.log("enterBack"),
onLeaveBack: () => console.log("leaveBack"),
onToggle: self => console.log("active", self.isActive)
});
Use the rich callback system
Wasn't that fun?
Here are a few caveats to keep in mind:
- The fake-scrolling animation (just the part that's moving the container horizontally) must have no easing (
ease: "none"). - Pinning and snapping won't work on ScrollTriggers with a
containerAnimation. - The mapping of scroll position trigger points are based on the trigger element itself not being animated horizontally (inside the container). If you need to animate the trigger, you can either wrap it in a <div> and use that as the trigger instead or just factor the trigger's movement into your end position. For example, if you animate it left 100px, make the
end100px further to the left. - Requires ScrollTrigger 3.8.0 or later