Skip to content

Commit 4ed51aa

Browse files
committed
minor fixes
1 parent a0af69e commit 4ed51aa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ The timing function can be set as a [Bezier curve](/bezier-curve) with 4 control
143143
2. Last control point: `(1,1)`.
144144
3. For intermediate points, the values of `x` must be in the interval `0..1`, `y` can be anything.
145145

146+
If you're not familiar with Bezier curves yet, you might want to check the [Bezier curve](/bezier-curve) chapter of the tutorial.
147+
146148
The syntax for a Bezier curve in CSS: `cubic-bezier(x2, y2, x3, y3)`. Here we need to specify only 2nd and 3rd control points, because the 1st one is fixed to `(0,0)` and the 4th one is `(1,1)`.
147149

148150
The timing function describes how fast the animation process goes.
@@ -215,7 +217,7 @@ So we could use `ease-out` for our slowing down train:
215217
.train {
216218
left: 0;
217219
transition: left 5s ease-out;
218-
/* transition: left 5s cubic-bezier(0, .5, .5, 1); */
220+
/* same as transition: left 5s cubic-bezier(0, .5, .5, 1); */
219221
}
220222
```
221223

@@ -230,7 +232,7 @@ In the example below the animation code is:
230232
.train {
231233
left: 100px;
232234
transition: left 5s cubic-bezier(.5, -1, .5, 2);
233-
/* JavaScript sets left to 400px */
235+
/* click on a train sets left to 450px */
234236
}
235237
```
236238

0 commit comments

Comments
 (0)