Capítulo 332 de 411

Chapter 332: .animation

Core Idea

[read-only] The Tween or Timeline associated with the ScrollTrigger instance (if any).

Code Examples

let tween = gsap.to(".class", {
  x: 100,
  id: "example",
  scrollTrigger: ".trigger",
});

console.log(ScrollTrigger.getById("example").animation); // tween
  • What it demonstrates: typical usage of .animation in a GSAP animation.

Key Takeaways

  1. [read-only] The Tween or Timeline associated with the ScrollTrigger instance (if any).

Connects To