Performance: Keyframe animations
MEDIUM IMPACT
Keyframe animations affect the browser's paint and composite stages, impacting smoothness and visual stability during animations.
@keyframes moveAndScale { 0% { transform: translateX(0) scaleX(1); } 100% { transform: translateX(200px) scaleX(3); } } .element { animation: moveAndScale 2s infinite; will-change: transform; position: absolute; }
@keyframes moveAndResize { 0% { left: 0; width: 100px; } 100% { left: 200px; width: 300px; } } .element { position: absolute; animation: moveAndResize 2s infinite; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Animating 'left' and 'width' | High (style changes affect layout) | Multiple per frame | High (full paint) | [X] Bad |
| Animating 'transform' and 'opacity' | Low (no layout changes) | None | Low (composite only) | [OK] Good |