Performance: Transition property
MEDIUM IMPACT
This affects the smoothness and speed of visual changes on the page, impacting user interaction responsiveness and visual stability.
button {
transition: background-color 0.3s ease;
}
button:hover {
background-color: red;
}button {
transition: all 0.3s ease;
}
button:hover {
width: 200px;
background-color: red;
}| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Transition on 'all' including width | Multiple style recalculations | Multiple reflows per frame | High paint cost | [X] Bad |
| Transition on 'background-color' only | Minimal style recalculations | No reflows | Low paint cost | [OK] Good |
| Transition on 'transform' property | Minimal style recalculations | No reflows | GPU accelerated paint | [OK] Good |
| Transition on 'height' property | Triggers layout recalculation | Reflow per frame | High paint cost | [X] Bad |