Skip to content

Commit 8b3730b

Browse files
committed
minor fixes
1 parent c41361f commit 8b3730b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

7-animation/2-css-animations/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ In more technical details, when there's a style change, the browser goes through
421421

422422
During a CSS animation, this process repeats every frame. However, CSS properties that never affect geometry or position, such as `color`, may skip the Layout step. If a `color` changes, the browser doesn't calculate any new geometry, it goes to Paint -> Composite. And there are few properties that directly go to Composite.
423423

424-
The Layout step is by far the most expensive: geometry calculations take time. And the delays are actually visible on most devices, leading to a bit more "jittery", less fluid animations.
424+
The Layout step is by far the most expensive: geometry calculations take time, especially on pages with many elements and a complex layout. And the delays are actually visible on most devices, leading to "jittery", less fluid animations.
425425

426426
**The general recomendation is to animate properties that don't do Layout.**
427427

0 commit comments

Comments
 (0)