Skip to content

Commit da2b79e

Browse files
ewilligersbirtles
authored andcommitted
[css-animations] [css-transitions] [css-values] easing (#3922)
Link to easing-function instead of the defunct timing-function.
1 parent ae13395 commit da2b79e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

css-animations-1/Overview.bs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ The 'animation-timing-function' property</h3>
545545
During the 'animation-delay', the 'animation-timing-function' is not applied.
546546

547547
Note: This definition is necessary because otherwise a <a spec=css-easing>step
548-
timing function</a> with a <a spec=css-easing>step position</a> of <a value
548+
easing function</a> with a <a spec=css-easing>step position</a> of <a value
549549
spec=css-easing for="steps()">start</a> would produce a backwards fill equal
550550
to the top of the first step in the function.
551551

@@ -555,12 +555,12 @@ The 'animation-timing-function' property</h3>
555555

556556
<pre class='propdef'>
557557
Name: animation-timing-function
558-
Value: <<timing-function>>#
558+
Value: <<easing-function>>#
559559
Initial: ease
560560
Applies to: all elements
561561
Inherited: no
562562
Percentages: N/A
563-
Computed value: list, each item a computed <<timing-function>>
563+
Computed value: list, each item a computed <<easing-function>>
564564
Animation type: not animatable
565565
Canonical order: per grammar
566566
</pre>
@@ -818,7 +818,7 @@ The 'animation' shorthand property</h3>
818818
Canonical order: per grammar
819819
</pre>
820820

821-
<dfn>&lt;single-animation></dfn> = <<time>> || <<timing-function>> || <<time>> || <<single-animation-iteration-count>> || <<single-animation-direction>> || <<single-animation-fill-mode>> || <<single-animation-play-state>> || [ none | <<keyframes-name>> ]
821+
<dfn>&lt;single-animation></dfn> = <<time>> || <<easing-function>> || <<time>> || <<single-animation-iteration-count>> || <<single-animation-direction>> || <<single-animation-fill-mode>> || <<single-animation-play-state>> || [ none | <<keyframes-name>> ]
822822

823823
Note that order is important within each animation definition: the first value in each
824824
<<single-animation>> that can be parsed as a <<time>> is assigned to the 'animation-duration',

css-transitions-1/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ Introduction {#introduction}
333333
</p>
334334
<pre class="propdef">
335335
Name: transition-timing-function
336-
Value: <<timing-function>>#
336+
Value: <<easing-function>>#
337337
Initial: ''transition-timing-function/ease''
338338
Applies to: all elements
339339
Inherited: no
@@ -380,7 +380,7 @@ Introduction {#introduction}
380380
</pre>
381381

382382
<div class="prod">
383-
<dfn type id="single-transition">&lt;single-transition&gt;</dfn> = [ ''transition-property/none'' | <<single-transition-property>> ] || <<time>> || <<timing-function>> || <<time>>
383+
<dfn type id="single-transition">&lt;single-transition&gt;</dfn> = [ ''transition-property/none'' | <<single-transition-property>> ] || <<time>> || <<easing-function>> || <<time>>
384384
</div>
385385

386386
<p>

css-values-3/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ Author-defined Identifiers: the <<custom-ident>> type</h3>
443443
For example, the shorthand declaration ''animation: ease-in ease-out''
444444
is equivalent to the longhand declarations
445445
''animation-timing-function: ease-in; animation-name: ease-out;''.
446-
''ease-in'' is claimed by the <<timing-function>> production belonging to 'animation-timing-function',
446+
''ease-in'' is claimed by the <<easing-function>> production belonging to 'animation-timing-function',
447447
leaving ''ease-out'' to be claimed by the <<custom-ident>> production belonging to 'animation-name'.
448448
</div>
449449

0 commit comments

Comments
 (0)