Animations
Installation
SKILL.md
GPU-Accelerated Properties
Only these properties animate on the compositor thread (60fps):
| Property | Use |
|---|---|
transform |
Move, rotate, scale (translateX, rotate, scale) |
opacity |
Fade in/out |
Everything else triggers layout or paint. Avoid animating:
width,height,margin,padding(layout thrashing)top,left,right,bottom(use transform instead)border-width,font-size(expensive reflows)
/* ❌ Triggers layout every frame */
.slide { left: 100px; transition: left 0.3s; }