GSAP Core Tween Methods - gsap.to(targets, vars) — animate from current state to . Most common. - gsap.from(targets, vars) — animate from to current state (entrances). - gsap.fromTo(targets, fromVars, toVars) — explicit start and end. - gsap.set(targets, vars) — apply immediately (duration 0). Always use camelCase property names (e.g. , ). Common vars - duration — seconds (default 0.5). - delay — seconds before start. - ease — (default), , , , . - stagger — number or object: , . - overwrite — (default), , or . - repeat — number or for infinite. yoyo — alternates direction with repeat. - onCom…