Skip to content

Commit 3a05a85

Browse files
committed
Fix two additional occurrences of unitless '0'.
1 parent 30f4443 commit 3a05a85

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

css3-animations/Overview.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ <h3 id=timing-functions-for-keyframes-><span class=secno>3.1. </span>
481481

482482
</pre>
483483
Five keyframes are specified for the animation named "bounce". Between the
484-
first and second keyframe (ie. between 0 and 25%) an "ease-out" timing
484+
first and second keyframe (ie. between 0% and 25%) an "ease-out" timing
485485
function is used. Between the second and third keyframe (ie. between 25%
486486
and 50%) an "ease-in" timing function is used. And so on. The effect will
487487
appear as an element that moves up the page 50px, slowing down as it
@@ -943,10 +943,10 @@ <h3 id=the-animation-delay-property-><span class=secno>3.8. </span> The
943943
some time after it is applied. An <span class=prop-name>&lsquo;<a
944944
href="#animation-delay"><code
945945
class=property>animation-delay</code></a>&rsquo;</span> value of
946-
&lsquo;<code class=css>0</code>&rsquo; means the animation will execute as
947-
soon as it is applied. Otherwise, the value specifies an offset from the
948-
moment the animation is applied, and the animation will delay execution by
949-
that offset.
946+
&lsquo;<code class=css>0s</code>&rsquo; means the animation will execute
947+
as soon as it is applied. Otherwise, the value specifies an offset from
948+
the moment the animation is applied, and the animation will delay
949+
execution by that offset.
950950

951951
<p> If the value for <span class=prop-name>&lsquo;<a
952952
href="#animation-delay"><code

css3-animations/Overview.src.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ <h3>
337337

338338
}
339339

340-
</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
340+
</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
341341
</div>
342342
<p>
343343
See <a href="#animation-timing-function_tag">the <span class="prop-name">'animation-timing-function'</span> property</a> for more information.
@@ -880,7 +880,7 @@ <h3>
880880
The <span class="prop-name">'animation-delay'</span> property defines
881881
when the animation will start. It allows an animation to begin
882882
execution some time after it is applied. An <span
883-
class="prop-name">'animation-delay'</span> value of '0' means the
883+
class="prop-name">'animation-delay'</span> value of '0s' means the
884884
animation will execute as soon as it is applied. Otherwise, the value
885885
specifies an offset from the moment the animation is applied, and the
886886
animation will delay execution by that offset.

0 commit comments

Comments
 (0)