Skip to content

Commit 9bae8fd

Browse files
Typos
1 parent 85cbc1c commit 9bae8fd

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

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

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# CSS-animations
22

3-
CSS animations allow to do simple animations without JavaScript at all.
3+
CSS animations make it possible to do simple animations without JavaScript at all.
44

5-
JavaScript can be used to control CSS animation and make it even better with a little of code.
5+
JavaScript can be used to control CSS animations and make them even better, with little code.
66

77
## CSS transitions [#css-transition]
88

99
The idea of CSS transitions is simple. We describe a property and how its changes should be animated. When the property changes, the browser paints the animation.
1010

11-
That is: all we need is to change the property. And the fluent transition is made by the browser.
11+
That is: all we need is to change the property. And the fluid transition is done by the browser.
1212

1313
For instance, the CSS below animates changes of `background-color` for 3 seconds:
1414

@@ -47,7 +47,7 @@ There are 4 properties to describe CSS transitions:
4747
- `transition-timing-function`
4848
- `transition-delay`
4949

50-
We'll cover them in a moment, for now let's note that the common `transition` property allows to declare them together in the order: `property duration timing-function delay`, and also animate multiple properties at once.
50+
We'll cover them in a moment, for now let's note that the common `transition` property allows declaring them together in the order: `property duration timing-function delay`, as well as animating multiple properties at once.
5151

5252
For instance, this button animates both `color` and `font-size`:
5353

@@ -70,25 +70,25 @@ growing.onclick = function() {
7070
</script>
7171
```
7272

73-
Now let's cover animation properties one by one.
73+
Now, let's cover animation properties one by one.
7474

7575
## transition-property
7676

77-
In `transition-property` we write a list of property to animate, for instance: `left`, `margin-left`, `height`, `color`.
77+
In `transition-property` we write a list of properties to animate, for instance: `left`, `margin-left`, `height`, `color`.
7878

79-
Not all properties can be animated, but [many of them](http://www.w3.org/TR/css3-transitions/#animatable-properties-). The value `all` means "animate all properties".
79+
Not all properties can be animated, but [many of them can](http://www.w3.org/TR/css3-transitions/#animatable-properties-). The value `all` means "animate all properties".
8080

8181
## transition-duration
8282

8383
In `transition-duration` we can specify how long the animation should take. The time should be in [CSS time format](http://www.w3.org/TR/css3-values/#time): in seconds `s` or milliseconds `ms`.
8484

8585
## transition-delay
8686

87-
In `transition-delay` we can specify the delay *before* the animation. For instance, if `transition-delay: 1s`, then animation starts after 1 second after the change.
87+
In `transition-delay` we can specify the delay *before* the animation. For instance, if `transition-delay: 1s`, then the animation starts 1 second after the property change.
8888

89-
Negative values are also possible. Then the animation starts from the middle. For instance, if `transition-duration` is `2s`, and the delay is `-1s`, then the animation takes 1 second and starts from the half.
89+
Negative values are also possible. Then the animation starts from the middle. For instance, if `transition-duration` is `2s`, and the delay is `-1s`, then the animation takes 1 second and starts from the halfway point.
9090

91-
Here's the animation shifts numbers from `0` to `9` using CSS `translate` property:
91+
Here the animation shifts numbers from `0` to `9` using CSS `translate` property:
9292

9393
[codetabs src="digits"]
9494

@@ -108,13 +108,13 @@ In the example above JavaScript adds the class `.animate` to the element -- and
108108
stripe.classList.add('animate');
109109
```
110110

111-
We can also start it "from the middle", from the exact number, e.g. corresponding to the current second, using the negative `transition-delay`.
111+
We could also start it from somewhere in the middle of the transition, from an exact number, e.g. corresponding to the current second, using a negative `transition-delay`.
112112

113113
Here if you click the digit -- it starts the animation from the current second:
114114

115115
[codetabs src="digits-negative-delay"]
116116

117-
JavaScript does it by an extra line:
117+
JavaScript does it with an extra line:
118118

119119
```js
120120
stripe.onclick = function() {
@@ -129,25 +129,25 @@ stripe.onclick = function() {
129129

130130
## transition-timing-function
131131

132-
Timing function describes how the animation process is distributed along the time. Will it start slowly and then go fast or vise versa.
132+
The timing function describes how the animation process is distributed along its timeline. Will it start slowly and then go fast or vice versa.
133133

134-
That's the most complicated property from the first sight. But it becomes very simple if we devote a bit time to it.
134+
It appears to be the most complicated property at first. But it becomes very simple if we devote a bit time to it.
135135

136-
That property accepts two kinds of values: a Bezier curve or steps. Let's start from the curve, as it's used more often.
136+
That property accepts two kinds of values: a Bezier curve or steps. Let's start with the curve, as it's used more often.
137137

138138
### Bezier curve
139139

140-
The timing function can be set as a [Bezier curve](/bezier-curve) with 4 control points that satisfies the conditions:
140+
The timing function can be set as a [Bezier curve](/bezier-curve) with 4 control points that satisfy the conditions:
141141

142142
1. First control point: `(0,0)`.
143143
2. Last control point: `(1,1)`.
144-
3. For intermediate points values of `x` must be in the interval `0..1`, `y` can be anything.
144+
3. For intermediate points the values of `x` must be in the interval `0..1`, `y` can be anything.
145145

146146
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)`.
147147

148-
The timing function describes how fast the animation process goes in time.
148+
The timing function describes how fast the animation process goes.
149149

150-
- The `x` axis is the time: `0` -- the starting moment, `1` -- the last moment of `transition-duration`.
150+
- The `x` axis is the time: `0` -- the start, `1` -- the end of `transition-duration`.
151151
- The `y` axis specifies the completion of the process: `0` -- the starting value of the property, `1` -- the final value.
152152

153153
The simplest variant is when the animation goes uniformly, with the same linear speed. That can be specified by the curve `cubic-bezier(0, 0, 1, 1)`.
@@ -197,7 +197,7 @@ CSS:
197197

198198
There are several built-in curves: `linear`, `ease`, `ease-in`, `ease-out` and `ease-in-out`.
199199

200-
The `linear` is a shorthand for `cubic-bezier(0, 0, 1, 1)` -- a straight line, we saw it already.
200+
The `linear` is a shorthand for `cubic-bezier(0, 0, 1, 1)` -- a straight line, which we described above.
201201

202202
Other names are shorthands for the following `cubic-bezier`:
203203

@@ -221,9 +221,9 @@ So we could use `ease-out` for our slowing down train:
221221

222222
But it looks a bit differently.
223223

224-
**A Bezier curve can make the animation "jump out" of its range.**
224+
**A Bezier curve can make the animation exceed its range.**
225225

226-
The control points on the curve can have any `y` coordinates: even negative or huge. Then the Bezier curve would also jump very low or high, making the animation go beyond its normal range.
226+
The control points on the curve can have any `y` coordinates: even negative or huge ones. Then the Bezier curve would also extend very low or high, making the animation go beyond its normal range.
227227

228228
In the example below the animation code is:
229229
```css
@@ -244,21 +244,21 @@ But if you click the train, you'll see that:
244244

245245
[codetabs src="train-over"]
246246

247-
Why it happens -- pretty obvious if we look at the graph of the given Bezier curve:
247+
Why it happens is pretty obvious if we look at the graph of the given Bezier curve:
248248

249249
![](bezier-train-over.svg)
250250

251-
We moved the `y` coordinate of the 2nd point below zero, and for the 3rd point we made put it over `1`, so the curve goes out of the "regular" quadrant. The `y` is out of the "standard" range `0..1`.
251+
We moved the `y` coordinate of the 2nd point below zero, and for the 3rd point we made it over `1`, so the curve goes out of the "regular" quadrant. The `y` is out of the "standard" range `0..1`.
252252

253-
As we know, `y` measures "the completion of the animation process". The value `y = 0` corresponds to the starting property value and `y = 1` -- the ending value. So values `y<0` move the property lower than the starting `left` and `y>1` -- over the final `left`.
253+
As we know, `y` measures "the completion of the animation process". The value `y = 0` corresponds to the starting property value and `y = 1` -- the ending value. So values `y<0` move the property beyond than the starting `left` and `y>1` -- past the final `left`.
254254

255255
That's a "soft" variant for sure. If we put `y` values like `-99` and `99` then the train would jump out of the range much more.
256256

257-
But how to make the Bezier curve for a specific task? There are many tools. For instance, we can do it on the site <http://cubic-bezier.com/>.
257+
But how do we make a Bezier curve for a specific task? There are many tools. For instance, we can do it on the site <http://cubic-bezier.com/>.
258258

259259
### Steps
260260

261-
Timing function `steps(number of steps[, start/end])` allows to split animation into steps.
261+
The timing function `steps(number of steps[, start/end])` allows splitting an animation into steps.
262262

263263
Let's see that in an example with digits.
264264

@@ -324,11 +324,11 @@ When the CSS animation finishes the `transitionend` event triggers.
324324

325325
It is widely used to do an action after the animation is done. Also we can join animations.
326326

327-
For instance, the ship in the example below starts to swim there and back on click, each time farther and farther to the right:
327+
For instance, the ship in the example below starts to sail there and back when clicked, each time farther and farther to the right:
328328

329329
[iframe src="boat" height=300 edit link]
330330

331-
The animation is initiated by the function `go` that re-runs each time when the transition finishes and flips the direction:
331+
The animation is initiated by the function `go` that re-runs each time the transition finishes, and flips the direction:
332332

333333
```js
334334
boat.onclick = function() {
@@ -337,11 +337,11 @@ boat.onclick = function() {
337337

338338
function go() {
339339
if (times % 2) {
340-
// swim to the right
340+
// sail to the right
341341
boat.classList.remove('back');
342342
boat.style.marginLeft = 100 * times + 200 + 'px';
343343
} else {
344-
// swim to the left
344+
// sail to the left
345345
boat.classList.add('back');
346346
boat.style.marginLeft = 100 * times - 200 + 'px';
347347
}
@@ -357,7 +357,7 @@ boat.onclick = function() {
357357
};
358358
```
359359

360-
The event object for `transitionend` has few specific properties:
360+
The event object for `transitionend` has a few specific properties:
361361

362362
`event.propertyName`
363363
: The property that has finished animating. Can be good if we animate multiple properties simultaneously.
@@ -369,7 +369,7 @@ The event object for `transitionend` has few specific properties:
369369

370370
We can join multiple simple animations together using the `@keyframes` CSS rule.
371371

372-
It specifies the "name" of the animation and rules: what, when and where to animate. Then using the `animation` property we attach the animation to the element and specify additional parameters for it.
372+
It specifies the "name" of the animation and rules: what, when and where to animate. Then using the `animation` property we can attach the animation to the element and specify additional parameters for it.
373373

374374
Here's an example with explanations:
375375

@@ -405,11 +405,11 @@ Here's an example with explanations:
405405

406406
There are many articles about `@keyframes` and a [detailed specification](https://drafts.csswg.org/css-animations/).
407407

408-
Probably you won't need `@keyframes` often, unless everything is in the constant move on your sites.
408+
You probably won't need `@keyframes` often, unless everything is in constant motion on your sites.
409409

410410
## Summary
411411

412-
CSS animations allow to smoothly (or not) animate changes of one or multiple CSS properties.
412+
CSS animations allow smoothly (or not) animated changes of one or multiple CSS properties.
413413

414414
They are good for most animation tasks. We're also able to use JavaScript for animations, the next chapter is devoted to that.
415415

@@ -419,9 +419,9 @@ Limitations of CSS animations compared to JavaScript animations:
419419
+ Simple things done simply.
420420
+ Fast and lightweight for CPU.
421421
- JavaScript animations are flexible. They can implement any animation logic, like an "explosion" of an element.
422-
- Not just property changes. We can create new elements in JavaScript for purposes of animation.
422+
- Not just property changes. We can create new elements in JavaScript as part of the animation.
423423
```
424424

425-
The majority of animations can be implemented using CSS as described in this chapter. And `transitionend` event allows to run JavaScript after the animation, so it integrates fine with the code.
425+
The majority of animations can be implemented using CSS as described in this chapter. And the `transitionend` event allows JavaScript to be run after the animation, so it integrates fine with the code.
426426

427427
But in the next chapter we'll do some JavaScript animations to cover more complex cases.

0 commit comments

Comments
 (0)