Properties

GSAP animates many CSS properties.

Position

x: 200
y: 100

Rotation

rotation: 360

Scale

scale: 2

Opacity

opacity: 0.5

Width & Height

width: "300px",
height: "200px"

Color

backgroundColor: "blue"

Example

gsap.to(".box", {
  x: 200,
  rotation: 360,
  scale: 1.5,
  opacity: 0.7,
  duration: 2
});