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
545545
During the 'animation-delay', the 'animation-timing-function' is not applied.
546546

547547
Note: This definition is necessary because otherwise a step
548-
timing function with a step position of
548+
easing function with a step position of
549549
spec=css-easing for="steps()">start 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
555555

556556
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
@@ -818,7 +818,7 @@ The 'animation' shorthand property
818818
Canonical order: per grammar
819819
820820

821-
<single-animation> = < || <<timing-function>> || < || <> || <> || <> || <> || [ none | <> ]
821+
<single-animation> = < || <<easing-function>> || < || <> || <> || <> || <> || [ none | <> ]
822822

823823
Note that order is important within each animation definition: the first value in each
824824
<> that can be parsed as a < 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

334334
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
381381

382382
383-
<single-transition> = [ ''transition-property/none'' | <> ] || < || <<timing-function>> || <
383+
<single-transition> = [ ''transition-property/none'' | <> ] || < || <<easing-function>> || <
384384
385385

386386

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 <> type
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 <> production belonging to 'animation-name'.
448448
449449

0 commit comments

Comments
 (0)