-
Notifications
You must be signed in to change notification settings - Fork 704
/
Copy pathOverview.bs
512 lines (395 loc) · 19.2 KB
/
Overview.bs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
<pre class=metadata>
Title: CSS Easing Functions Level 1
Status: ED
Work Status: testing
Shortname: css-easing
Level: 1
Group: csswg
ED: https://drafts.csswg.org/css-easing/
TR: https://www.w3.org/TR/css-easing-1/
Previous version: https://www.w3.org/TR/2021/CRD-css-easing-1-20210401/
Previous version: https://www.w3.org/TR/2019/CR-css-easing-1-20190430/
Implementation Report: https://wpt.fyi/results/css/css-easing?label=master&label=experimental&aligned
Editor: Brian Birtles, Mozilla https://www.mozilla.org/, [email protected], w3cid 43194
Editor: Dean Jackson, Apple Inc https://www.apple.com/, [email protected], w3cid 42080
Former Editor: Matt Rakow, Microsoft, w3cid 62267
Former Editor: Shane Stephens, Google, [email protected], w3cid 47691
Abstract: This CSS module describes a way for authors to define a transformation
that controls the rate of change of some value.
Applied to animations, such transformations can be used to produce
animations that mimic physical phenomena such as momentum or to cause the
animation to move in discrete steps producing robot-like movement.
!Participate: IRC: <a href="ircs://irc.w3.org:6667/css">#css</a> on W3C's IRC
Repository: w3c/csswg-drafts
WPT Path Prefix: css/css-easing/
WPT Display: closed
!Tests: <a href="https://github.com/web-platform-tests/wpt/tree/master/css/css-easing">web-platform-tests css/css-easing</a>
</pre>
<pre class=biblio>
{
"FUND-COMP-GRAPHICS": {
"title": "Fundamentals of Computer Graphics",
"authors": [
"Peter Shirley",
"Michael Ashikhmin",
"Steve Marschner"
],
"date": "2009",
"publisher": "A K Peters Limited"
}
}
</pre>
<pre class="link-defaults">
spec:css-easing-1; type:dfn; text:easing function
</pre>
Introduction {#introduction}
============================
<em>This section is not normative.</em>
It is often desirable to control the rate at which some value changes.
For example, gradually increasing the speed at which an element moves can
give the element a sense of weight as it appears to gather momentum.
This can be used to produce intuitive user interface elements or convincing
cartoon props that behave like their physical counterparts.
Alternatively, it is sometimes desirable for animation to move forwards in
distinct steps such as a segmented wheel that rotates such that the segments
always appear in the same position.
Similarly, controlling the rate of change of gradient interpolation can be
used to produce different visual effects such as suggesting a concave or convex
surface, or producing a striped effect.
[=Easing functions=] provide a means to transform such values by taking an
input progress value and producing a corresponding transformed output progress
value.
<figure>
<img src="images/easing-function-example.svg" width="400"
alt="Example of an easing function that produces an ease-in effect.">
<figcaption>
Example of an easing function that produces an ease-in effect.<br>
Given an input progress of 0.7, the easing function scales the
value to produce an output progress of 0.52.<br>
Applying this easing function to an animation would cause it to progress
more slowly at first but then gradually progress more quickly.
</figcaption>
</figure>
<h3 id="values">
Value Definitions</h3>
This specification uses the <a href="https://www.w3.org/TR/css-values-3/#value-defs">value definition syntax</a> from [[!CSS-VALUES-3]].
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]].
Combination with other CSS modules may expand the definitions of these value types.
<h2 id=easing-functions oldids=timing-functions>Easing functions</h2>
An <dfn export lt="easing function|timing function">easing function</dfn> takes
an [=input progress value=] and produces an [=output progress value=].
An [=easing function=] must be a pure function meaning that for a given set of
inputs, it always produces the same [=output progress value=].
The <dfn>input progress value</dfn> is a real number in the range [-∞,
∞].
Typically, the [=input progress value=] is in the range [0, 1] but this may
not be the case when [=easing functions=] are chained together.
<div class=note>
An example of when easing functions are chained together occurs in
Web Animations [[WEB-ANIMATIONS]]
where the output of the easing function specified on an animation effect
may become the input to an easing function specified on
one of the keyframes of a keyframe effect.
In this scenario,
the input to the easing function on the keyframe effect
may be outside the range [0, 1].
</div>
The <dfn>output progress value</dfn> is a real number in the
range [-∞, ∞].
Some types of easing functions also take an additional boolean [=before flag=]
input which is defined subsequently.
This specification defines four types of easing functions whose definitions
follow.
The syntax for specifying an [=easing function=] is as follows:
<div class="prod"><dfn type><easing-function></dfn> =
''linear'' |
<<cubic-bezier-easing-function>> |
<<step-easing-function>></div>
<wpt>
timing-functions-syntax-computed.html
timing-functions-syntax-invalid.html
timing-functions-syntax-valid.html
</wpt>
<h3 id=the-linear-easing-function oldids=linear-timing-function-section>The linear easing function: ''linear''</h3>
The <dfn dfn-type=value for="easing-function">linear</dfn> keyword
produces an identity linear [=easing function=]
whose [=output progress value=] is equal to the
[=input progress value=] for all inputs.
<h3 id=cubic-bezier-easing-functions oldids=cubic-bezier-timing-functions>Cubic
Bézier easing functions:
''ease'', ''ease-in'', ''ease-out'', ''ease-in-out'', ''cubic-bezier()''</h3>
A <dfn export>cubic Bézier easing function</dfn> is
a type of [=easing function=] defined by four real numbers
that specify the two control points,
<var>P1</var> and <var>P2</var>, of a cubic Bézier curve whose
end points <var ignore>P0</var> and <var ignore>P3</var>
are fixed at (0, 0) and (1, 1) respectively.
The <var>x</var> coordinates of <var>P1</var> and <var>P2</var>
are restricted to the range [0, 1].
<figure>
<img src="images/cubic-bezier-easing-curve.svg" width="400"
alt="A cubic Bezier curve used as an easing function.">
<figcaption>
A cubic Bézier curve used as an easing function.<br>
The shape of the curve is determined by the location of the control
points <var>P1</var> and <var>P2</var>.<br>
Input progress values serve as <var>x</var> values of the curve,
whilst the <var>y</var> values are the output progress values.
</figcaption>
</figure>
A <a>cubic Bézier easing function</a> has the following syntax
(using notation from [[!CSS-VALUES-3]]):
<div class="prod"><dfn type><cubic-bezier-easing-function></dfn> =
''ease'' | ''ease-in'' | ''ease-out'' | ''ease-in-out'' |
<span class="atom"><a lt="cubic-bezier()"
function>cubic-bezier</a>(<<number [0,1]>>, <<number>>, <<number [0,1]>>,
<<number>>)</span></div>
The meaning of each value is as follows:
<dl dfn-type="value" dfn-for="<cubic-bezier-easing-function>">
: <dfn>ease</dfn>
:: Equivalent to ''cubic-bezier(0.25, 0.1, 0.25, 1)''.
: <dfn>ease-in</dfn>
:: Equivalent to ''cubic-bezier(0.42, 0, 1, 1)''.
: <dfn>ease-out</dfn>
:: Equivalent to ''cubic-bezier(0, 0, 0.58, 1)''.
: <dfn>ease-in-out</dfn>
:: Equivalent to ''cubic-bezier(0.42, 0, 0.58, 1)''.
: <dt><dfn function lt="cubic-bezier()">cubic-bezier(<<number [0,1]>>, <<number>>, <<number [0,1]>>, <<number>>)</dfn></dt>
:: Specifies a <a>cubic Bézier easing function</a>.
The four numbers specify points <var>P1</var> and <var>P2</var> of
the curve as (<var ignore>x1</var>, <var ignore>y1</var>, <var
ignore>x2</var>, <var ignore>y2</var>).
Both <var>x</var> values must be in the range [0, 1] or the definition is
invalid.
</dl>
The keyword values listed above are illustrated below.
<figure>
<img src="images/curve-keywords.svg" width="500"
alt="The easing functions produced by keyword values.">
<figcaption>
The easing functions produced by each of the cubic Bézier easing
function keyword values.
</figcaption>
</figure>
### Output of a cubic bézier easing function ### {#cubic-bezier-algo}
The mapping from input progress to output progress is performed by
determining the corresponding <var>y</var> value ([=output progress value=]) for
a given <var>x</var> value ([=input progress value=]).
The evaluation of this curve is covered in many sources such as
[[FUND-COMP-GRAPHICS]].
For [=input progress values=] outside the range [0, 1], the curve is extended
infinitely using tangent of the curve at the closest endpoint as follows:
* For [=input progress values=] less than zero,
1. If the <var>x</var> value of P1 is greater than zero, use
a straight line that passes through P1 and P0 as the tangent.
1. Otherwise, if the <var>x</var> value of P2 is greater than
zero, use a straight line that passes through P2 and P0 as the tangent.
1. Otherwise, let the [=output progress value=] be zero for all
[=input progress values=] in the range [-∞, 0).
* For [=input progress values=] greater than one,
1. If the <var>x</var> value of P2 is less than one, use
a straight line that passes through P2 and P3 as the tangent.
1. Otherwise, if the <var>x</var> value of P1 is less than
one, use a straight line that passes through P1 and P3 as the tangent.
1. Otherwise, let the [=output progress value=] be one for all
[=input progress values=] in the range (1, ∞].
<wpt>
cubic-bezier-timing-functions-output.html
</wpt>
<h3 id=step-easing-functions oldids=step-timing-functions>Step easing functions:
''step-start'', ''step-end'', ''steps()''</h3>
A <dfn>step easing function</dfn> is a type of [=easing function=]
that divides the input time into a specified number of intervals that
are equal in length.
It is defined by a number of <dfn>steps</dfn>, and a <dfn>step position</dfn>.
It has following syntax:
<div class="prod">
<dfn type><step-easing-function></dfn> =
''step-start'' | ''step-end'' |
<span class="atom"><a lt="steps()" function>steps</a>(<<integer>> ,
<<step-position>>?)</span>
<dfn type><step-position></dfn> =
''jump-start'' | ''jump-end'' |
''jump-none'' | ''jump-both'' |
''start'' | ''end''</div>
<wpt>
step-timing-functions-syntax.html
</wpt>
The meaning of each value is as follows:
<dl dfn-type=value dfn-for="<step-easing-function>">
: <dfn>step-start</dfn>
:: Computes to ''steps(1, start)''
: <dfn>step-end</dfn>
:: Computes to ''steps(1, end)''
<figure>
<img src="images/step-easing-keyword-examples.svg" width="500"
alt="Example step easing keywords.">
<figcaption>
Example step easing function keyword values.
</figcaption>
</figure>
: <dfn function lt="steps()">steps(<integer>, <step-position>?)</dfn>
:: The first parameter specifies the number of intervals in the function.
It must be a positive integer greater than 0
unless the second parameter is <a value for="steps()">jump-none</a>
in which case it must be a positive integer greater than 1.
The second parameter, which is optional, specifies the [=step position=]
using one of the following values:
<dl dfn-type=value dfn-for="<step-position>">
: <dfn value for="steps()">jump-start</dfn>
:: The first rise occurs at [=input progress value=] of 0.
: <dfn value for="steps()">jump-end</dfn>
:: The last rise occurs at [=input progress value=] of 1.
: <dfn value for="steps()">jump-none</dfn>
:: All rises occur within the range (0, 1).
: <dfn value for="steps()">jump-both</dfn>
:: The first rise occurs at [=input progress value=] of 0
and the last rise occurs at [=input progress value=] of 1.
: <dfn value for="steps()">start</dfn>
:: Behaves as <a value for="steps()">jump-start</a>.
: <dfn value for="steps()">end</dfn>
:: Behaves as <a value for="steps()">jump-end</a>.
</dl>
If the second parameter is omitted, the value ''end'' is assumed.
These values are illustrated below:
<figure>
<img src="images/step-easing-func-examples.svg" width="500"
alt="Example step easing functions.">
<figcaption>
Example step easing functions.
</figcaption>
</figure>
</dl>
<h4 id=step-easing-algo oldids=step-timing-function-algo>Output of
a step easing function</h4>
At the exact point where a step occurs, the result of the function is
conceptually the top of the step. However, an additional <dfn>before flag</dfn>
passed as input to the [=step easing function=], if true, will cause the
result of the function to correspond to the bottom of the step at the step
point.
<div class=example>
As an example of how the [=before flag=] affects the behavior of this function,
consider an animation with a [=step easing function=] whose [=step
position=] is <a value for="steps()">start</a> and which has a positive
delay and backwards fill.
For example, using CSS animation:
<pre class='lang-css'>
animation: moveRight 5s 1s steps(5, start);
</pre>
During the delay phase, the [=input progress value=] will be zero but if the
[=before flag=] is set to indicate that the animation has yet to reach its
animation interval, the easing function will produce zero as its [=output
progress value=], i.e. the bottom of the first step.
At the exact moment when the animation interval begins, the [=input progress
value=] will still be zero, but the [=before flag=] will not be set and hence
the result of the easing function will correspond to the top of the first step.
</div>
For the purposes of calculating the [=output progress value=], the
[=step position=] <a value for="steps()">start</a> is considered equivalent to
<a value for="steps()">jump-start</a>.
Likewise <a value for="steps()">end</a> is considered equivalent to <a value
for="steps()">jump-end</a>.
As a result, the following algorithm does not make explicit reference to
<a value for="steps()">start</a> or <a value for="steps()">end</a>.
Note: User agents must still differentiate between
<a value for="steps()">jump-start</a> and <a value for="steps()">start</a> for
the purpose of serialization (see [[#serialization]]).
The [=output progress value=] is calculated from the [=input progress value=]
and [=before flag=] as follows:
1. Calculate the <var>current step</var> as
<code>floor([=input progress value=] × [=steps=])</code>.
1. If the [=step position=] property is one of:
* <a value for="steps()">jump-start</a>,
* <a value for="steps()">jump-both</a>,
increment <var>current step</var> by one.
1. If <em>both</em> of the following conditions are true:
* the [=before flag=] is set, <em>and</em>
* [=input progress value=] × [=steps=] mod 1 equals zero
(that is, if [=input progress value=] × [=steps=] is
integral), then
decrement <var>current step</var> by one.
1. If [=input progress value=] ≥ 0 and <var>current step</var> < 0,
let <var>current step</var> be zero.
1. Calculate |jumps| based on the [=step position=] as follows:
: <a value for="steps()">jump-start</a> or
<a value for="steps()">jump-end</a>
:: [=steps=]
: <a value for="steps()">jump-none</a>
:: [=steps=] - 1
: <a value for="steps()">jump-both</a>
:: [=steps=] + 1
1. If [=input progress value=] ≤ 1 and <var>current step</var> >
|jumps|, let <var>current step</var> be |jumps|.
<div class=note>
Steps 4 and 6 in this procedure ensure that given an [=input progress
value=] in the range [0, 1], a step easing function does not produce an
[=output progress value=] outside that range.
For example, although mathematically we might expect that a step easing
function with a [=step position=] of <a value for="steps()">jump-start</a>
would step up (i.e. beyond 1) when the [=input progress value=] is 1,
intuitively,
when we apply such an easing function to a forwards-filling animation,
we expect it to produce an [=output progress value=] of 1
as the animation fills forwards.
A similar situation arises for a step easing function with
a [=step position=] of <a value for="steps()">jump-end</a>
when applied to an animation during its delay phase.
</div>
1. The [=output progress value=] is <code><var>current step</var> /
|jumps|</code>.
<wpt>
step-timing-functions-output.html
</wpt>
<h3 id=serialization oldids=serializing-a-timing-function>Serialization</h3>
Easing functions are serialized using the common serialization patterns
defined in [[CSSOM]] with the following additional requirements:
* The keyword values ''ease'', ''linear'', ''ease-in'', ''ease-out'',
and ''ease-in-out'' are serialized as-is, that is, they are
<em>not</em> converted to the equivalent ''cubic-bezier()''
function before serializing.
* Step easing functions, whether they are specified using the
''steps()'' function or either of the ''step-start'' or ''step-end''
keywords, are serialized as follows:
1. If the [=step position=] is ''jump-end'' or ''end'', serialize
as <a lt="steps()" function>steps(<integer>)</a>.
2. Otherwise, serialize as <a lt="steps()"
function>steps(<integer>, <step-position>)</a>.
<wpt>
timing-functions-syntax-computed.html
</wpt>
<h2 class=no-num id=privacy>Privacy Considerations</h2>
<!-- Horizontal review wants Security and Privacy sections to be separate. -->
No new privacy considerations have been reported on this specification.
This specification does not directly introduce any new capabilities to the
Web platform but rather provides common definitions that may be referenced by
other specifications.
<h2 class=no-num id=security>Security Considerations</h2>
Specifications referencing the features defined in this specification
should consider that while easing functions most commonly
take an [=input progress value=] in the range [0,1]
and produce an [=output progress value=] in the range [0, 1],
this is not always the case.
Applications of easing functions should
define the behavior for inputs and outputs outside this range
to ensure they do not introduce new security considerations.
Changes {#changes}
=======
The following changes have been made since the
<a href="https://www.w3.org/TR/2019/CR-css-easing-1-20190430/">30 April 2019 Candidate Recommendation</a>:
* Updated ''cubic-bezier()'' syntax definition to annotate range restrictions
using [=CSS bracketed range notation=]. (Editorial)
* Added an example of chaining easing functions. (Editorial)
Acknowledgements {#acknowledgements}
================
This specification is based on the <a
href="https://www.w3.org/TR/css3-transitions/">CSS Transitions</a> specification
edited by L. David Baron, Dean Jackson, David Hyatt, and Chris Marrin.
The editors would also like to thank Douglas Stockwell, Steve Block, Tab Atkins,
Rachel Nabors, Martin Pitt, and the <a
href="https://damp-lake-50659.herokuapp.com/">Animation at Work</a> slack
community for their feedback and contributions.
<!-- Level 2 tests -->
<wpt hidden>
linear-timing-functions-output.html
linear-timing-functions-syntax.html
</wpt>