Performance: Duration and timing curves
MEDIUM IMPACT
This affects how long animations take and how smoothly they run, impacting user experience and interaction responsiveness.
button:hover { transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }button:hover { transition-duration: 5s; transition-timing-function: linear; }| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Long duration + linear timing | Minimal | Minimal | High due to long animation frames | [X] Bad |
| Short duration + smooth cubic-bezier | Minimal | Minimal | Low due to fewer frames and smooth easing | [OK] Good |