You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: css3-animations/Overview.src.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@ <h2>Animations</h2>
127
127
<p>
128
128
The start time of an animation is the latter of two moments: the time at which the style is
129
129
resolved that specifies the animation, or the time the document's load event is fired.
130
-
Therefore, an animation specified in the document stylesheet will begin at the document load.
130
+
Therefore, an animation specified in the document style sheet will begin at the document load.
131
131
An animation specified on an element by modifying the style after the document has loaded will
132
132
start when the style is resolved. That may be immediately in the case of a pseudo style rule
133
133
such as hover, or may be when the scripting engine returns control to the browser (in the case
@@ -143,7 +143,7 @@ <h2>Animations</h2>
143
143
time the animation starts. Changing them during the execution of the
144
144
animation has no effect. Note also, that changing the value of
145
145
<codeclass="property">'animation-name'</code> does not necessarily
146
-
restart an animation (e.g. if a list of animations are applied and
146
+
restart an animation (e.g., if a list of animations are applied and
147
147
one is removed from the list, only that animation will stop; The other
148
148
animations will continue). In order to restart an animation, it must be
149
149
removed then reapplied.
@@ -330,7 +330,7 @@ <h3>
330
330
331
331
}
332
332
333
-
</pre>Five keyframes are specified for the animation named "bounce". Between the first and second keyframe (ie. between 0% and 25%) an "ease-out" timing function is used. Between the second and third keyframe (ie. between 25% and 50%) an "ease-in" timing function is used. And so on. The effect will appear as an element that moves up the page 50px, slowing down as it reaches its highest point then speeding up as it falls back to 100px. The second half of the animation behaves in a similar manner, but only moves the element 25px units up the page. A timing function specified on the "to" or 100% keyframe is ignored
333
+
</pre>Five keyframes are specified for the animation named "bounce". Between the first and second keyframe (i.e., between 0% and 25%) an "ease-out" timing function is used. Between the second and third keyframe (i.e., between 25% and 50%) an "ease-in" timing function is used. And so on. The effect will appear as an element that moves up the page 50px, slowing down as it reaches its highest point then speeding up as it falls back to 100px. The second half of the animation behaves in a similar manner, but only moves the element 25px units up the page. A timing function specified on the "to" or 100% keyframe is ignored
334
334
</div>
335
335
<p>
336
336
See <ahref="#animation-timing-function_tag">the <codeclass="property">'animation-timing-function'</code>
@@ -1083,7 +1083,7 @@ <h3>
1083
1083
</p>
1084
1084
<pclass="issue">
1085
1085
An alternative proposal is to accept the font shorthand approach of
1086
-
using a "/" character between the values of the same type. eg. 2s/4s would
1086
+
using a "/" character between the values of the same type. e.g. 2s/4s would
1087
1087
mean a duration of 2 seconds and a delay of 4 seconds.
0 commit comments