css3-animations/Overview.src.html

Wed, 20 Feb 2013 20:30:01 -0800

author
Sylvain Galineau <sylvaing@microsoft.com>
date
Wed, 20 Feb 2013 20:30:01 -0800
changeset 7517
5e26a796fb84
parent 7504
2ccb60ab6e99
child 7518
e22f3d171747
permissions
-rw-r--r--

[css3-animations] Update editors' list

jackalmage@5911 1 <!DOCTYPE html>
dino@937 2 <html lang="en">
dino@937 3 <head>
jackalmage@5911 4 <title>CSS Animations</title>
jackalmage@5911 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
jackalmage@5911 6 <link rel="stylesheet" type="text/css" href="../default.css">
dbaron@7504 7 <link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css">
dbaron@6736 8 <style type="text/css">
dbaron@6736 9 div.prod { margin: 1em 2em; }
dbaron@6736 10 </style>
dino@937 11 </head>
dino@937 12
dino@937 13 <body>
dino@937 14
dino@937 15 <div class="head">
dino@937 16 <!--logo-->
dino@937 17
simon@2533 18 <h1>CSS Animations</h1>
dino@937 19
dino@937 20 <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
dino@937 21 <dl>
jackalmage@5911 22 <dt>This version:
dbaron@7504 23 <dd><a href="[VERSION]">[VERSION]</a>
jackalmage@5911 24 <dt>Latest version:
jackalmage@5911 25 <dd><a
jackalmage@5911 26 href="http://www.w3.org/TR/css3-animations/">[LATEST]</a>
jackalmage@5911 27 <dt>Editor's draft:
jackalmage@5911 28 <dd><a href="http://dev.w3.org/csswg/[SHORTNAME]/">http://dev.w3.org/csswg/[SHORTNAME]/</a>
dbaron@7459 29 (<a href="https://dvcs.w3.org/hg/csswg/log/tip/[SHORTNAME]/Overview.src.html">change log</a>)
jackalmage@5911 30 <dt>Previous version:
dbaron@7504 31 <dd><a href="http://www.w3.org/TR/2012/WD-css3-animations-20130219/">
dbaron@7504 32 http://www.w3.org/TR/2012/WD-css3-animations-20130219/</a>
jackalmage@5911 33 <dt id="editors-list">Editors:
jackalmage@5911 34 <dd><a href="mailto:dino@apple.com">Dean Jackson</a> (<a
jackalmage@5911 35 href="http://www.apple.com/">Apple Inc</a>)
sylvaing@7517 36 <dd><a href="mailto:ratan@microsoft.com">Rossen Atanassov</a>
sylvaing@7517 37 (<a class=org href="http://www.microsoft.com/">Microsoft</a>)
sylvaing@7517 38 <dd class=vcard><a class=fn href="http://dbaron.org/">L. David Baron</a>
sylvaing@7517 39 (<a class=org href="http://www.mozilla.org/">Mozilla</a>)
sylvaing@7517 40
sylvaing@7517 41 <dt>Former editors:
jackalmage@5911 42 <dd><a href="mailto:hyatt@apple.com">David Hyatt</a> (<a
jackalmage@5911 43 href="http://www.apple.com/">Apple Inc</a>)
jackalmage@5911 44 <dd><a href="mailto:cmarrin@apple.com">Chris Marrin</a> (<a
jackalmage@5911 45 href="http://www.apple.com/">Apple Inc</a>)
sylvaing@7517 46 <dd>Sylvain Galineau, Microsoft
sylvaing@7517 47
jackalmage@5911 48 <dt>Issues list:
jackalmage@5911 49 <dd><a href="https://www.w3.org/Bugs/Public/buglist.cgi?query_format=advanced&amp;product=CSS&amp;component=Animations&amp;resolution=---&amp;cmdtype=doit">in Bugzilla</a>
dbaron@3965 50
jackalmage@5911 51 <dt>Discussion:
jackalmage@5911 52 <dd><a href="http://lists.w3.org/Archives/Public/www-style/">www-style@w3.org</a> with subject line &ldquo;<kbd>[[SHORTNAME]] <var>&hellip; message topic &hellip;</var></kbd>&rdquo;
dbaron@5229 53
jackalmage@5911 54 <dt>Test suite:
jackalmage@5911 55 <dd>none yet
dino@937 56 </dl>
dino@937 57
dino@937 58 <!--copyright-->
dino@937 59
dino@937 60 <hr title="Separator for header">
dino@937 61 </div>
dino@937 62
jackalmage@5911 63 <h2 class="no-num no-toc" id="abstract">
jackalmage@5911 64 Abstract</h2>
dino@937 65
jackalmage@5911 66 <p>
jackalmage@5911 67 This CSS module describes a way for authors to animate the values of CSS properties over time,
jackalmage@5911 68 using keyframes.
jackalmage@5911 69 The behavior of these keyframe animations can be controlled by specifying their duration,
jackalmage@5911 70 number of repeats,
jackalmage@5911 71 and repeating behavior.
dino@937 72
jackalmage@5911 73
jackalmage@5911 74 <h2 class="no-num no-toc" id="status">
jackalmage@5911 75 Status of this document</h2>
dino@937 76 <!--status-->
dino@937 77
dino@937 78
jackalmage@5911 79 <h2 class="no-num no-toc" id="contents">
jackalmage@5911 80 Table of contents</h2>
dino@937 81 <!--toc-->
dino@937 82
dino@937 83
jackalmage@5911 84 <h2 id="introduction">
jackalmage@5911 85 Introduction</h2>
dino@937 86
jackalmage@5911 87 <p><em>This section is not normative.</em>
dino@937 88
jackalmage@5911 89 <p>
jackalmage@5911 90 CSS Transitions [[CSS3-TRANSITIONS]]
jackalmage@5911 91 provide a way to interpolate CSS property values
jackalmage@5911 92 when they change as a result of underlying property changes.
jackalmage@5911 93 This provides an easy way to do simple animation,
jackalmage@5911 94 but the start and end states of the animation are controlled by the existing property values,
jackalmage@5911 95 and transitions provide little control to the author on how the animation progresses.
jackalmage@5911 96
jackalmage@5911 97 <p>
jackalmage@5911 98 This proposal introduces <dfn>defined animations</dfn>,
jackalmage@5911 99 in which the author can specify the changes in CSS properties over time as a set of keyframes.
jackalmage@5911 100 Animations are similar to transitions
jackalmage@5911 101 in that they change the presentational value of CSS properties over time.
jackalmage@5911 102 The principal difference is that
jackalmage@5911 103 while transitions trigger <em>implicitly</em> when property values change,
jackalmage@5911 104 animations are <em>explicitly</em> executed when the animation properties are applied.
jackalmage@5911 105 Because of this,
jackalmage@5911 106 animations require explicit values for the properties being animated.
jackalmage@5911 107 These values are specified using animation keyframes, described below.
jackalmage@5911 108
jackalmage@5911 109 <p>
jackalmage@5911 110 Many aspects of the animation can be controlled,
jackalmage@5911 111 including how many times the animation iterates,
jackalmage@5911 112 whether or not it alternates between the begin and end values,
jackalmage@5911 113 and whether or not the animation should be running or paused.
jackalmage@5911 114 An animation can also delay its start time.
simon@1671 115
sylvaing@7391 116 <h2 id="values">
sylvaing@7391 117 Values</h2>
sylvaing@7391 118
sylvaing@7391 119 <p>
sylvaing@7391 120 This specification follows the <a href="http://www.w3.org/TR/CSS21/about.html#property-defs">CSS property definition conventions</a> from [[!CSS21]].
sylvaing@7391 121 Value types not defined in this specification are defined in CSS LevelĀ 2 RevisionĀ 1 [[!CSS21]].
sylvaing@7391 122 Other CSS modules may expand the definitions of these value types:
sylvaing@7391 123 for example [[CSS3VAL]], when combined with this module,
sylvaing@7391 124 expands the definition of the <var>&lt;length&gt;</var> value type as used in this specification.
sylvaing@7391 125
sylvaing@7391 126 <p>In addition to the property-specific values listed in their definitions, all properties defined in this specification also accept the <a href="http://dev.w3.org/csswg/css3-values/#common-keywords">''initial''</a> and <a href="http://dev.w3.org/csswg/css3-values/#common-keywords">''inherit''</a> keyword as their property value. For readability it has not been repeated explicitly.
sylvaing@7391 127
simon@1719 128
jackalmage@5911 129 <h2 id="animations">
jackalmage@5911 130 Animations</h2>
simon@1719 131
jackalmage@5911 132 <p>
jackalmage@5911 133 CSS Animations affect computed property values.
jackalmage@5911 134 During the execution of an animation,
jackalmage@5911 135 the computed value for a property is controlled by the animation.
jackalmage@5911 136 This overrides the value specified in the normal styling system.
sylvaing@6806 137 Animations override all normal rules, but are overriden by
sylvaing@6806 138 !important rules.
simon@1719 139
jackalmage@5911 140 <p>
jackalmage@5911 141 If at one point in time there are multiple animations specifying behavior for the same property,
jackalmage@5911 142 the animation whose name occurs last in the value of 'animation-name'
jackalmage@5911 143 will override the other animations at that point.
jackalmage@5911 144
simon@1719 145
jackalmage@5911 146 <p>
jackalmage@5911 147 An animation does not affect the computed value before the application of the animation,
jackalmage@5911 148 before the animation delay has expired,
jackalmage@5911 149 and after the end of the animation.
jackalmage@5911 150
simon@1719 151
jackalmage@5911 152 <div class="figure">
jackalmage@5911 153 <img src="sandwich.png" alt="">
jackalmage@5911 154
jackalmage@5911 155 <p class="caption">
jackalmage@5911 156 Computation of animated property values
jackalmage@5911 157 </div>
simon@1719 158
jackalmage@5911 159 <p>
jackalmage@5911 160 The diagram above shows how property values are computed.
jackalmage@5911 161 The intrinsic style is shown at the top of the diagram.
jackalmage@5911 162 The computed value is derived from intrinsic style
jackalmage@5911 163 at the times when an animation is not running
jackalmage@5911 164 and also when an animation is delayed
jackalmage@5911 165 (see below for specification of animation delay).
jackalmage@5911 166 During an animation,
jackalmage@5911 167 the computed style is derived from the animated value.
jackalmage@5911 168
simon@1719 169
jackalmage@5911 170 <p>
jackalmage@5911 171 The start time of an animation is the latter of two moments:
jackalmage@5911 172 the time at which the style is resolved that specifies the animation,
jackalmage@5911 173 or the time the document's load event is fired.
jackalmage@5911 174 Therefore, an animation specified in the document style sheet
jackalmage@5911 175 will begin at the document load.
jackalmage@5911 176 An animation specified on an element by modifying the style after the document has loaded
jackalmage@5911 177 will start when the style is resolved.
jackalmage@5911 178 That may be immediately in the case of a pseudo style rule such as hover,
jackalmage@5911 179 or may be when the scripting engine returns control to the browser
jackalmage@5911 180 (in the case of style applied by script).
jackalmage@5911 181
simon@1719 182
jackalmage@5911 183 <p>
jackalmage@5911 184 An animation applies to an element
jackalmage@5911 185 if the element has a value for 'animation-name' that references a valid keyframes rule.
jackalmage@5911 186 Once an animation has started
jackalmage@5911 187 it continues until it ends
jackalmage@5911 188 or the 'animation-name' is removed.
jackalmage@5911 189 The values used for the keyframes and animation properties are snapshotted at the time the animation starts.
jackalmage@5911 190 Changing them during the execution of the animation has no effect.
jackalmage@5911 191 Note also that changing the value of 'animation-name' does not necessarily restart an animation
jackalmage@5911 192 (e.g., if a list of animations are applied and one is removed from the list,
jackalmage@5911 193 only that animation will stop;
jackalmage@5911 194 The other animations will continue).
jackalmage@5911 195 In order to restart an animation,
jackalmage@5911 196 it must be removed then reapplied.
jackalmage@5911 197
simon@1719 198
jackalmage@5911 199 <p>
jackalmage@5911 200 The end of the animation is defined by the combination of the
jackalmage@5911 201 'animation-duration',
jackalmage@5911 202 'animation-iteration-count' and
jackalmage@5911 203 'animation-fill-mode' properties.
jackalmage@5911 204
jackalmage@5911 205
jackalmage@5911 206 <div class="example">
jackalmage@5911 207 <pre>
jackalmage@5911 208 div {
dbaron@6082 209 animation-name: diagonal-slide;
dbaron@6082 210 animation-duration: 5s;
dbaron@6082 211 animation-iteration-count: 10;
jackalmage@5911 212 }
simon@1719 213
jackalmage@5911 214 @keyframes diagonal-slide {
simon@1719 215
dbaron@6082 216 from {
dbaron@6082 217 left: 0;
dbaron@6082 218 top: 0;
dbaron@6082 219 }
simon@1719 220
dbaron@6082 221 to {
dbaron@6082 222 left: 100px;
dbaron@6082 223 top: 100px;
dbaron@6082 224 }
simon@1719 225
jackalmage@5911 226 }</pre>
simon@1719 227
jackalmage@5911 228 <p>
jackalmage@5911 229 This will produce an animation
jackalmage@5911 230 that moves an element from (0, 0) to (100px, 100px)
jackalmage@5911 231 over five seconds
jackalmage@5911 232 and repeats itself nine times
jackalmage@5911 233 (for a total of ten iterations).
jackalmage@5911 234 </div>
dino@937 235
sylvaing@7140 236 <p>
sylvaing@7140 237 Setting the display property to 'none' will terminate any running animation
sylvaing@7140 238 applied to the element and its descendants.
sylvaing@7140 239
sylvaing@7140 240 If an element has a display of 'none', updating display to a value other than 'none'
sylvaing@7140 241 will start all animations applied to the element by the 'animation-name' property,
sylvaing@7140 242 as well as all animations applied to descendants with display other than 'none'.
sylvaing@7140 243 </p>
sylvaing@7140 244
dbaron@7313 245 <p>
dbaron@7313 246 While authors can use animations to create dynamically changing content,
dbaron@7313 247 dynamically changing content can lead to seizures in some users.
dbaron@7313 248 For information on how to avoid content that can lead to seizures, see
dbaron@7313 249 <a href="http://www.w3.org/TR/WCAG20/#seizure">Guideline 2.3:
dbaron@7313 250 Seizures:
dbaron@7313 251 Do not design content in a way that is known to cause seizures</a>
dbaron@7313 252 ([[WCAG20]]).
dbaron@7313 253 </p>
dbaron@7313 254
jackalmage@5911 255 <h2 id="keyframes">
jackalmage@5911 256 Keyframes</h2>
jackalmage@5911 257 <p>
jackalmage@5911 258 Keyframes are used to specify the values for the animating properties
jackalmage@5911 259 at various points during the animation.
jackalmage@5911 260 The keyframes specify the behavior of one cycle of the animation;
jackalmage@5911 261 the animation may iterate one or more times.
jackalmage@5911 262
jackalmage@5911 263 <p>
jackalmage@5911 264 Keyframes are specified using a specialized CSS at-rule.
jackalmage@5911 265 A @keyframes rule consists of the keyword "@keyframes",
jackalmage@5911 266 followed by an identifier giving a name for the animation
jackalmage@5911 267 (which will be referenced using 'animation-name'),
jackalmage@5911 268 followed by a set of style rules
jackalmage@5911 269 (delimited by curly braces).
jackalmage@5911 270
jackalmage@5911 271 <p>
jackalmage@5911 272 The <dfn>keyframe selector</dfn> for a keyframe style rule
jackalmage@5911 273 consists of a comma-separated list of percentage values
jackalmage@5911 274 or the keywords 'from' or 'to'.
jackalmage@5911 275 The selector is used to specify the percentage along the duration of the animation that the keyframe represents.
jackalmage@5911 276 The keyframe itself is specified by the block of property values declared on the selector.
jackalmage@5911 277 The keyword 'from' is equivalent to the value ''0%''.
jackalmage@5911 278 The keyword 'to' is equivalent to the value ''100%''.
jackalmage@5911 279 <span class='note'>Note that the percentage unit specifier must be used on percentage values.
jackalmage@5911 280 Therefore, ''0'' is an invalid keyframe selector.</span>
jackalmage@5911 281
jackalmage@5911 282 <p>
jackalmage@5911 283 If a ''0%'' or ''from'' keyframe is not specified,
jackalmage@5911 284 then the user agent constructs a ''0%'' keyframe
jackalmage@5911 285 using the computed values of the properties being animated.
jackalmage@5911 286 If a ''100%'' or ''to'' keyframe is not specified,
jackalmage@5911 287 then the user agent constructs a ''100%'' keyframe
sylvaing@6384 288 using the computed values of the properties being animated.
sylvaing@6384 289 If a keyframe selector specifies
sylvaing@6384 290 negative percentage values or
sylvaing@6384 291 values higher than 100%,
sylvaing@6384 292 then the keyframe will be ignored.
sylvaing@7141 293
sylvaing@7141 294 <p>
sylvaing@6220 295 The <dfn>keyframe declaration block</dfn> for a keyframe rule
jackalmage@5911 296 consists of properties and values.
jackalmage@5911 297 Properties that are unable to be animated are ignored in these rules,
jackalmage@5911 298 with the exception of 'animation-timing-function',
sylvaing@6220 299 the behavior of which is described below. In addition, keyframe rule declarations qualified with !important are ignored.
jackalmage@5911 300
jackalmage@5911 301 <p class="issue">
jackalmage@5911 302 Need to describe what happens if a property is not present in all keyframes.
jackalmage@5911 303
jackalmage@5911 304 <p>
jackalmage@5911 305 The @keyframes rule that is used by an animation
jackalmage@5911 306 will be the last one encountered in sorted rules order
jackalmage@5911 307 that matches the name of the animation specified by the 'animation-name' property.
jackalmage@5911 308 @keyframes rules do not cascade;
jackalmage@5911 309 therefore, an animation will never derive keyframes from more than one @keyframes rule.
sylvaing@7141 310
sylvaing@7141 311 <p class='note'>
sylvaing@7141 312 Note that since empty @keyframes rule are valid, they may hide the keyframes of
sylvaing@7141 313 those preceding animation definitions with a matching name.
jackalmage@5911 314
jackalmage@5911 315 <p>
jackalmage@5911 316 To determine the set of keyframes,
jackalmage@5911 317 all of the values in the selectors are sorted in increasing order by time.
jackalmage@5911 318 If there are any duplicates,
jackalmage@5911 319 then the last keyframe specified inside the @keyframes rule
jackalmage@5911 320 will be used to provide the keyframe information for that time.
jackalmage@5911 321 There is no cascading within a @keyframes rule if multiple keyframes specify the same keyframe selector values.
dino@937 322
jackalmage@5911 323 <p>
sylvaing@6047 324 If a property is not specified for a keyframe,
jackalmage@5911 325 or is specified but invalid,
jackalmage@5911 326 the animation of that property proceeds as if that keyframe did not exist.
jackalmage@5911 327 Conceptually,
jackalmage@5911 328 it is as if a set of keyframes is constructed for each property that is present in any of the keyframes,
jackalmage@5911 329 and an animation is run independently for each property.
jackalmage@5911 330
jackalmage@5911 331 <div class="example">
jackalmage@5911 332 <pre>
jackalmage@5911 333 @keyframes wobble {
dbaron@6082 334 0% {
dbaron@6082 335 left: 100px;
dbaron@6082 336 }
dino@937 337
dbaron@6082 338 40% {
dbaron@6082 339 left: 150px;
dbaron@6082 340 }
dino@937 341
dbaron@6082 342 60% {
dbaron@6082 343 left: 75px;
dbaron@6082 344 }
dino@937 345
dbaron@6082 346 100% {
dbaron@6082 347 left: 100px;
dbaron@6082 348 }
jackalmage@5911 349 }</pre>
dino@937 350
jackalmage@5911 351 <p>
jackalmage@5911 352 Four keyframes are specified for the animation named "wobble".
jackalmage@5911 353 In the first keyframe,
jackalmage@5911 354 shown at the beginning of the animation cycle,
jackalmage@5911 355 the value of the 'left' property being animated is ''100px''.
jackalmage@5911 356 By 40% of the animation duration,
jackalmage@5911 357 'left' has animated to ''150px''.
jackalmage@5911 358 At 60% of the animation duration,
jackalmage@5911 359 'left' has animated back to ''75px''.
jackalmage@5911 360 At the end of the animation cycle,
jackalmage@5911 361 the value of 'left' has returned to ''100px''.
jackalmage@5911 362 The diagram below shows the state of the animation if it were given a duration of ''10s''.
jackalmage@5911 363
jackalmage@5911 364 <div class="figure">
jackalmage@5911 365 <img src="animation1.png" alt="">
jackalmage@5911 366
jackalmage@5911 367 <p class="caption">
jackalmage@5911 368 Animations states specified by keyframes
jackalmage@5911 369 </div>
jackalmage@5911 370 </div>
dino@937 371
jackalmage@5911 372 <p>
jackalmage@5911 373 The following is the grammar for the keyframes rule.
jackalmage@5911 374
jackalmage@5911 375 <pre>
jackalmage@5911 376 keyframes_rule: KEYFRAMES_SYM S+ IDENT S* '{' S* keyframes_blocks '}' S*;
dino@937 377
jackalmage@5911 378 keyframes_blocks: [ keyframe_selector '{' S* declaration? [ ';' S* declaration? ]* '}' S* ]* ;
dbaron@4123 379
jackalmage@5911 380 keyframe_selector: [ FROM_SYM | TO_SYM | PERCENTAGE ] S* [ ',' S* [ FROM_SYM | TO_SYM | PERCENTAGE ] S* ]*;
dbaron@4123 381
jackalmage@5911 382 @{K}{E}{Y}{F}{R}{A}{M}{E}{S} {return KEYFRAMES_SYM;}
jackalmage@5911 383 {F}{R}{O}{M} {return FROM_SYM;}
jackalmage@5911 384 {T}{O} {return TO_SYM;}</pre>
dino@937 385
dino@937 386
jackalmage@5911 387 <h3 id="timing-functions">
jackalmage@5911 388 Timing functions for keyframes</h3>
dino@937 389
jackalmage@5911 390 <p>
jackalmage@5911 391 A keyframe style rule may also declare the timing function that is to be used
jackalmage@5911 392 as the animation moves to the next keyframe.
jackalmage@5911 393
jackalmage@5911 394 <div class="example">
jackalmage@5911 395 <pre>
jackalmage@5911 396 @keyframes bounce {
dino@937 397
dbaron@6082 398 from {
dbaron@6082 399 top: 100px;
dbaron@6082 400 animation-timing-function: ease-out;
dbaron@6082 401 }
dino@937 402
dbaron@6082 403 25% {
dbaron@6082 404 top: 50px;
dbaron@6082 405 animation-timing-function: ease-in;
dbaron@6082 406 }
dino@937 407
dbaron@6082 408 50% {
dbaron@6082 409 top: 100px;
dbaron@6082 410 animation-timing-function: ease-out;
dbaron@6082 411 }
dino@937 412
dbaron@6082 413 75% {
dbaron@6082 414 top: 75px;
dbaron@6082 415 animation-timing-function: ease-in;
dbaron@6082 416 }
dino@937 417
dbaron@6082 418 to {
dbaron@6082 419 top: 100px;
dbaron@6082 420 }
dbaron@5370 421
jackalmage@5911 422 }</pre>
dino@937 423
jackalmage@5911 424 <p>
jackalmage@5911 425 Five keyframes are specified for the animation named "bounce".
jackalmage@5911 426 Between the first and second keyframe
jackalmage@5911 427 (i.e., between 0% and 25%)
jackalmage@5911 428 an ''ease-out'' timing function is used.
jackalmage@5911 429 Between the second and third keyframe
jackalmage@5911 430 (i.e., between 25% and 50%)
jackalmage@5911 431 an ''ease-in'' timing function is used.
jackalmage@5911 432 And so on.
jackalmage@5911 433 The effect will appear as an element that moves up the page ''50px'',
jackalmage@5911 434 slowing down as it reaches its highest point
jackalmage@5911 435 then speeding up as it falls back to ''100px''.
jackalmage@5911 436 The second half of the animation behaves in a similar manner,
jackalmage@5911 437 but only moves the element ''25px'' up the page.
jackalmage@5911 438 </div>
jackalmage@5911 439
jackalmage@5911 440 <p>
jackalmage@5911 441 A timing function specified on the "to" or 100% keyframe is ignored.
dino@937 442
jackalmage@5911 443 <p>
jackalmage@5911 444 See the 'animation-timing-function' property for more information.
dino@937 445
dino@937 446
jackalmage@5911 447 <h3 id="animation-name-property">
jackalmage@5911 448 The 'animation-name' Property</h3>
dino@937 449
jackalmage@5911 450 <p>
jackalmage@5911 451 The 'animation-name' property defines a list of animations that apply.
jackalmage@5911 452 Each name is used to select the keyframe at-rule
jackalmage@5911 453 that provides the property values for the animation.
jackalmage@5911 454 If the name does not match any keyframe at-rule,
jackalmage@5911 455 there are no properties to be animated
jackalmage@5911 456 and the animation will not execute.
jackalmage@5911 457 Furthermore,
jackalmage@5911 458 if the animation name is ''none''
jackalmage@5911 459 then there will be no animation.
jackalmage@5911 460 This can be used to override any animations coming from the cascade.
jackalmage@5911 461 If multiple animations are attempting to modify the same property,
jackalmage@5911 462 then the animation closest to the end of the list of names wins.
jackalmage@5911 463
jackalmage@5911 464 <p id="list-matching">
jackalmage@5911 465 Each animation listed by name
jackalmage@5911 466 should have a corresponding value for the other animation properties listed below.
jackalmage@5911 467 If the lists of values for the other animation properties do not have the same length,
jackalmage@5911 468 the length of the 'animation-name' list
dbaron@6737 469 determines the number of items in each list examined when starting animations.
jackalmage@5911 470 The lists are matched up from the first value:
jackalmage@5911 471 excess values at the end are not used.
jackalmage@5911 472 If one of the other properties doesn't have enough comma-separated values to match the number of values of 'animation-name',
jackalmage@5911 473 the UA must calculate its used value by repeating the list of values until there are enough.
jackalmage@5911 474 This truncation or repetition does not affect the computed value.
jackalmage@5911 475 <span class="note">Note: This is analogous to the behavior of the 'background-*'properties,
jackalmage@5911 476 with 'background-image' analogous to 'animation-name'.</span>
jackalmage@5911 477
dino@937 478
jackalmage@5911 479 <table class=propdef>
jackalmage@5911 480 <tr>
jackalmage@5911 481 <th>Name:</th>
jackalmage@5911 482 <td><dfn>animation-name</dfn>
jackalmage@5911 483 <tr>
jackalmage@5911 484 <th><a href="#values">Value</a>:
dbaron@6739 485 <td><span>&lt;single-animation-name&gt;</span> [ ',' <span>&lt;single-animation-name&gt;</span> ]*
jackalmage@5911 486 <tr>
jackalmage@5911 487 <th>Initial:
jackalmage@5911 488 <td>''none''
jackalmage@5911 489 <tr>
jackalmage@5911 490 <th>Applies To:
sylvaing@7230 491 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 492 <tr>
jackalmage@5911 493 <th>Inherited:
jackalmage@5911 494 <td>no
jackalmage@5911 495 <tr>
dbaron@6735 496 <th>Animatable:
dbaron@6735 497 <td>no
dbaron@6735 498 <tr>
dbaron@6735 499 <th>Percentages:
dbaron@6735 500 <td>N/A
jackalmage@5911 501 <tr>
jackalmage@5911 502 <th>Media:
jackalmage@5911 503 <td>visual
jackalmage@5911 504 <tr>
dbaron@6735 505 <th>Computed Value:
dbaron@6735 506 <td>As specified
jackalmage@5911 507 <tr>
jackalmage@5911 508 <th>Canonical Order:
jackalmage@5911 509 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 510 </table>
dino@937 511
dbaron@6736 512 <div class="prod">
dbaron@6739 513 <dfn id="single-animation-name">&lt;single-animation-name&gt;</dfn> = none | &lt;IDENT&gt;
dbaron@6736 514 </div>
dbaron@6736 515
jackalmage@5911 516 <!--
jackalmage@5911 517 <p>
jackalmage@5911 518 It is possible for elements to have multiple animations running that change the same property or properties. In this case the animations combine in a manner defined by the property. For example, animations on 'opacity' will add together and animations on 'transform' will have their transformation matrices multiplied.
jackalmage@5911 519
jackalmage@5911 520 <div class="example">
jackalmage@5911 521 <p style="display:none">
jackalmage@5911 522 Example(s):
jackalmage@5911 523
jackalmage@5911 524 <pre>
jackalmage@5911 525 @keyframes 'border-bloat' {
jackalmage@5911 526 from {
jackalmage@5911 527 border-width: 0;
jackalmage@5911 528 }
jackalmage@5911 529 to {
jackalmage@5911 530 border-width: 10px;
jackalmage@5911 531 }
jackalmage@5911 532 }
dino@937 533
jackalmage@5911 534 @keyframes 'border-diet' {
jackalmage@5911 535 from {
jackalmage@5911 536 border-width: 4px;
jackalmage@5911 537 }
jackalmage@5911 538 to {
jackalmage@5911 539 border-width: 2px;
jackalmage@5911 540 }
jackalmage@5911 541 }
dino@937 542
jackalmage@5911 543 div {
jackalmage@5911 544 animation-name: 'border-bloat', 'border-diet';
jackalmage@5911 545 animation-duration: 10s, 4s;
jackalmage@5911 546 }
jackalmage@5911 547 </pre>
jackalmage@5911 548 <p>
jackalmage@5911 549 The above example has two animations executing on the same property, 'border-width'. The animations are additive. That is, the
jackalmage@5911 550 resulting value for the property will be the addition of the values from the
jackalmage@5911 551 two animations.
jackalmage@5911 552
jackalmage@5911 553 <p>
jackalmage@5911 554 At time '0s' the element's border will be 4px wide (0px from 'border-bloat' plus 4px from 'border-diet').
jackalmage@5911 555 At time '4s' the element's border will be 6px wide (4px from 'border-bloat' plus 2px from 'border-diet').
jackalmage@5911 556 At time '10s' the element's border will be 10px wide (10px from 'border-bloat' and no addition from
jackalmage@5911 557 'border-diet' as it is no longer executing).
jackalmage@5911 558
jackalmage@5911 559 </div>
jackalmage@5911 560 -->
dino@937 561
dino@937 562
jackalmage@5911 563 <h3 id="animation-duration-property">
jackalmage@5911 564 The 'animation-duration' Property</h3>
dino@937 565
jackalmage@5911 566 <p>
jackalmage@5911 567 The 'animation-duration' property defines the length of time that an animation takes to complete one cycle.
dino@937 568
jackalmage@5911 569
jackalmage@5911 570 <table class=propdef>
jackalmage@5911 571 <tr>
jackalmage@5911 572 <th>Name:</th>
jackalmage@5911 573 <td><dfn>animation-duration</dfn>
jackalmage@5911 574 <tr>
jackalmage@5911 575 <th><a href="#values">Value</a>:
dbaron@6739 576 <td> <span>&lt;time&gt;</span> [, <span>&lt;time&gt;</span>]*
jackalmage@5911 577 <tr>
jackalmage@5911 578 <th>Initial:
jackalmage@5911 579 <td>''0s''
jackalmage@5911 580 <tr>
jackalmage@5911 581 <th>Applies To:
sylvaing@7230 582 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 583 <tr>
jackalmage@5911 584 <th>Inherited:
jackalmage@5911 585 <td>no
jackalmage@5911 586 <tr>
dbaron@6735 587 <th>Animatable:
dbaron@6735 588 <td>no
dbaron@6735 589 <tr>
dbaron@6735 590 <th>Percentages:
dbaron@6735 591 <td>N/A
jackalmage@5911 592 <tr>
jackalmage@5911 593 <th>Media:
jackalmage@5911 594 <td>visual
jackalmage@5911 595 <tr>
dbaron@6735 596 <th>Computed Value:
dbaron@6735 597 <td>as specified
jackalmage@5911 598 <tr>
jackalmage@5911 599 <th>Canonical Order:
jackalmage@5911 600 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 601 </table>
jackalmage@5911 602
jackalmage@5911 603 <p>
jackalmage@5911 604 The initial value is ''0s'',
sylvaing@6222 605 meaning that the animation takes no time.
sylvaing@6218 606 When the duration is ''0s'' 'animation-fill-mode' still applies,
jackalmage@5911 607 so an animation that fills backwards
jackalmage@5911 608 will show the value of the 0% keyframe during any delay period,
jackalmage@5911 609 and an animation that fills forwards will retain the value specified at the 100% keyframe,
jackalmage@5911 610 even if the animation was instantaneous.
jackalmage@5911 611 Also, animation events are still fired.
sylvaing@6222 612 A negative 'animation-duration' value renders the declaration invalid.
jackalmage@5911 613
jackalmage@5911 614
jackalmage@5911 615 <h3 id="animation-timing-function-property">
jackalmage@5911 616 The 'animation-timing-function' Property</h3>
jackalmage@5911 617
jackalmage@5911 618 <p>
jackalmage@5911 619 The 'animation-timing-function' property describes how the animation will progress over one cycle of its duration.
jackalmage@5911 620 See the 'transition-timing-function' property [[!CSS3-TRANSITIONS]] for a complete description of timing function calculation.
jackalmage@5911 621
jackalmage@5911 622 <table class=propdef>
jackalmage@5911 623 <tr>
jackalmage@5911 624 <th>Name:</th>
jackalmage@5911 625 <td><dfn>animation-timing-function</dfn>
jackalmage@5911 626 <tr>
jackalmage@5911 627 <th><a href="#values">Value</a>:
sylvaing@7138 628 <td><span>&lt;single-timing-function&gt;</span> [ ',' <span>&lt;single-timing-function&gt;</span> ]*
jackalmage@5911 629 <tr>
jackalmage@5911 630 <th>Initial:
jackalmage@5911 631 <td>''ease''
jackalmage@5911 632 <tr>
jackalmage@5911 633 <th>Applies To:
sylvaing@7230 634 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 635 <tr>
jackalmage@5911 636 <th>Inherited:
jackalmage@5911 637 <td>no
jackalmage@5911 638 <tr>
dbaron@6735 639 <th>Animatable:
dbaron@6735 640 <td>no
dbaron@6735 641 <tr>
dbaron@6735 642 <th>Percentages:
dbaron@6735 643 <td>N/A
jackalmage@5911 644 <tr>
jackalmage@5911 645 <th>Media:
jackalmage@5911 646 <td>visual
jackalmage@5911 647 <tr>
dbaron@6735 648 <th>Computed Value:
dbaron@6735 649 <td>as specified
jackalmage@5911 650 <tr>
jackalmage@5911 651 <th>Canonical Order:
jackalmage@5911 652 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 653 </table>
jackalmage@5911 654
sylvaing@7138 655 <p>All the valid values of ''&lt;single-timing-function&gt;'' are defined by the 'transition-timing-function' property [[!CSS3-TRANSITIONS]].</p>
dbaron@6736 656
jackalmage@5911 657 <p>
jackalmage@5911 658 For a keyframed animation,
jackalmage@5911 659 the 'animation-timing-function' applies between keyframes,
jackalmage@5911 660 not over the entire animation.
jackalmage@5911 661 For example,
jackalmage@5911 662 in the case of an ''ease-in-out'' timing function,
jackalmage@5911 663 an animation will ease in at the start of the keyframe
jackalmage@5911 664 and ease out at the end of the keyframe.
jackalmage@5911 665 An 'animation-timing-function' defined within a keyframe block applies to that keyframe,
jackalmage@5911 666 otherwise the timing function specified for the animation is used.
jackalmage@5911 667
jackalmage@5911 668
jackalmage@5911 669 <h3 id="animation-iteration-count-property">
jackalmage@5911 670 The 'animation-iteration-count' Property</h3>
jackalmage@5911 671
jackalmage@5911 672 <p>
jackalmage@5911 673 The 'animation-iteration-count' property specifies the number of times an animation cycle is played.
jackalmage@5911 674 The initial value is ''1'',
jackalmage@5911 675 meaning the animation will play from beginning to end once.
jackalmage@5911 676 A value of ''infinite'' will cause the animation to repeat forever.
jackalmage@5911 677 Non-integer numbers will cause the animation to end part-way through a cycle.
jackalmage@5911 678 Negative values of 'animation-iteration-count' are invalid.
jackalmage@5911 679 This property is often used in conjunction an 'animation-direction' value of ''alternate'',
jackalmage@5911 680 which will cause the animation to play in reverse on alternate cycles.
jackalmage@5911 681
jackalmage@5911 682 <table class=propdef>
jackalmage@5911 683 <tr>
jackalmage@5911 684 <th>Name:</th>
jackalmage@5911 685 <td><dfn>animation-iteration-count</dfn>
jackalmage@5911 686 <tr>
jackalmage@5911 687 <th><a href="#values">Value</a>:
dbaron@6739 688 <td><span>&lt;single-animation-iteration-count&gt;</span> [ ',' <span>&lt;single-animation-iteration-count&gt;</span> ]*
jackalmage@5911 689 <tr>
jackalmage@5911 690 <th>Initial:
jackalmage@5911 691 <td>''1''
jackalmage@5911 692 <tr>
jackalmage@5911 693 <th>Applies To:
sylvaing@7230 694 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 695 <tr>
jackalmage@5911 696 <th>Inherited:
jackalmage@5911 697 <td>no
jackalmage@5911 698 <tr>
dbaron@6735 699 <th>Animatable:
dbaron@6735 700 <td>no
dbaron@6735 701 <tr>
dbaron@6735 702 <th>Percentages:
dbaron@6735 703 <td>N/A
jackalmage@5911 704 <tr>
jackalmage@5911 705 <th>Media:
jackalmage@5911 706 <td>visual
jackalmage@5911 707 <tr>
dbaron@6735 708 <th>Computed Value:
dbaron@6735 709 <td>as specified
jackalmage@5911 710 <tr>
jackalmage@5911 711 <th>Canonical Order:
jackalmage@5911 712 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 713 </table>
jackalmage@5911 714
dbaron@6736 715 <div class="prod">
dbaron@6739 716 <dfn id="single-animation-iteration-count">&lt;single-animation-iteration-count&gt;</dfn> =
dbaron@6736 717 infinite | &lt;number&gt;
dbaron@6736 718 </div>
jackalmage@5911 719
jackalmage@5911 720 <h3 id="animation-direction-property">
jackalmage@5911 721 The 'animation-direction' Property</h3>
jackalmage@5911 722
jackalmage@5911 723 <p>
jackalmage@5911 724 The 'animation-direction' property defines whether or not the animation should play in reverse on some or all cycles.
jackalmage@5911 725 When an animation is played in reverse the timing functions are also reversed.
jackalmage@5911 726 For example, when played in reverse an ease-in animation would appear to be an ease-out animation.
jackalmage@5911 727
jackalmage@5911 728 <table class=propdef>
jackalmage@5911 729 <tr>
jackalmage@5911 730 <th>Name:</th>
jackalmage@5911 731 <td><dfn>animation-direction</dfn>
jackalmage@5911 732 <tr>
jackalmage@5911 733 <th><a href="#values">Value</a>:
dbaron@6739 734 <td><span>&lt;single-animation-direction&gt;</span> [ ',' <span>&lt;single-animation-direction&gt;</span> ]*
jackalmage@5911 735 <tr>
jackalmage@5911 736 <th>Initial:
jackalmage@5911 737 <td>''normal''
jackalmage@5911 738 <tr>
jackalmage@5911 739 <th>Applies To:
sylvaing@7230 740 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 741 <tr>
jackalmage@5911 742 <th>Inherited:
jackalmage@5911 743 <td>no
jackalmage@5911 744 <tr>
dbaron@6735 745 <th>Animatable:
dbaron@6735 746 <td>no
dbaron@6735 747 <tr>
dbaron@6735 748 <th>Percentages:
dbaron@6735 749 <td>N/A
jackalmage@5911 750 <tr>
jackalmage@5911 751 <th>Media:
jackalmage@5911 752 <td>visual
jackalmage@5911 753 <tr>
dbaron@6735 754 <th>Computed Value:
dbaron@6735 755 <td>as specified
jackalmage@5911 756 <tr>
jackalmage@5911 757 <th>Canonical Order:
jackalmage@5911 758 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 759 </table>
jackalmage@5911 760
dbaron@6736 761 <div class="prod">
dbaron@6739 762 <dfn id="single-animation-direction">&lt;single-animation-direction&gt;</dfn> =
dbaron@6736 763 normal | reverse | alternate | alternate-reverse
dbaron@6736 764 </div>
dbaron@6736 765
jackalmage@5911 766 <dl>
jackalmage@5911 767 <dt><dfn>normal</dfn>
jackalmage@5911 768 <dd>
jackalmage@5911 769 All iterations of the animation are played as specified.
jackalmage@5911 770
jackalmage@5911 771 <dt><dfn>reverse</dfn>
jackalmage@5911 772 <dd>
jackalmage@5911 773 All iterations of the animation are played in the reverse direction from the way they were specified.
jackalmage@5911 774
jackalmage@5911 775 <dt><dfn>alternate</dfn>
jackalmage@5911 776 <dd>
jackalmage@5911 777 The animation cycle iterations that are odd counts are played in the normal direction,
jackalmage@5911 778 and the animation cycle iterations that are even counts are played in a reverse direction.
jackalmage@5911 779
jackalmage@5911 780 <dt><dfn>alternate-reverse</dfn>
jackalmage@5911 781 <dd>
jackalmage@5911 782 The animation cycle iterations that are odd counts are played in the reverse direction,
jackalmage@5911 783 and the animation cycle iterations that are even counts are played in a normal direction.
jackalmage@5911 784 </dl>
jackalmage@5911 785
jackalmage@5911 786 <p class='note'>
jackalmage@5911 787 Note that for the purpose of determining whether an iteration is even or odd,
jackalmage@5911 788 iterations start counting from 1.
jackalmage@5911 789
jackalmage@5911 790
jackalmage@5911 791 <h3 id="animation-play-state-property">
jackalmage@5911 792 The 'animation-play-state' Property</h3>
jackalmage@5911 793
jackalmage@5911 794 <p>
jackalmage@5911 795 The 'animation-play-state' property defines whether the animation is running or paused.
jackalmage@5911 796 A running animation can be paused by setting this property to ''paused''.
jackalmage@5911 797 To continue running a paused animation this property can be set to ''running''.
jackalmage@5911 798 A paused animation will continue to display the current value of the animation in a static state,
jackalmage@5911 799 as if the time of the animation is constant.
jackalmage@5911 800 When a paused animation is resumed,
jackalmage@5911 801 it restarts from the current value,
jackalmage@5911 802 not necessarily from the beginning of the animation.
jackalmage@5911 803
jackalmage@5911 804 <table class=propdef>
jackalmage@5911 805 <tr>
jackalmage@5911 806 <th>Name:</th>
jackalmage@5911 807 <td><dfn>animation-play-state</dfn>
jackalmage@5911 808 <tr>
jackalmage@5911 809 <th><a href="#values">Value</a>:
dbaron@6739 810 <td><span>&lt;single-animation-play-state&gt;</span> [ ',' <span>&lt;single-animation-play-state&gt;</span> ]*
jackalmage@5911 811 <tr>
jackalmage@5911 812 <th>Initial:
jackalmage@5911 813 <td>''running''
jackalmage@5911 814 <tr>
jackalmage@5911 815 <th>Applies To:
sylvaing@7230 816 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 817 <tr>
jackalmage@5911 818 <th>Inherited:
jackalmage@5911 819 <td>no
jackalmage@5911 820 <tr>
dbaron@6735 821 <th>Animatable:
dbaron@6735 822 <td>no
dbaron@6735 823 <tr>
dbaron@6735 824 <th>Percentages:
dbaron@6735 825 <td>N/A
jackalmage@5911 826 <tr>
jackalmage@5911 827 <th>Media:
jackalmage@5911 828 <td>visual
jackalmage@5911 829 <tr>
dbaron@6735 830 <th>Computed Value:
dbaron@6735 831 <td>as specified
jackalmage@5911 832 <tr>
jackalmage@5911 833 <th>Canonical Order:
jackalmage@5911 834 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 835 </table>
jackalmage@5911 836
dbaron@6736 837 <div class="prod">
dbaron@6739 838 <dfn id="single-animation-play-state">&lt;single-animation-play-state&gt;</dfn> =
dbaron@6736 839 running | paused
dbaron@6736 840 </div>
jackalmage@5911 841
jackalmage@5911 842 <h3 id="animation-delay-property">
jackalmage@5911 843 The 'animation-delay' Property</h3>
jackalmage@5911 844
jackalmage@5911 845 <p>
jackalmage@5911 846 The 'animation-delay' property defines when the animation will start.
jackalmage@5911 847 It allows an animation to begin execution some time after it is applied.
jackalmage@5911 848 An 'animation-delay' value of ''0s'' means the animation will execute as soon as it is applied.
jackalmage@5911 849 Otherwise, the value specifies an offset from the moment the animation is applied,
jackalmage@5911 850 and the animation will delay execution by that offset.
jackalmage@5911 851
jackalmage@5911 852 <p>
jackalmage@5911 853 If the value for 'animation-delay' is a negative time offset
jackalmage@5911 854 then the animation will execute the moment it is applied,
jackalmage@5911 855 but will appear to have begun execution at the specified offset.
jackalmage@5911 856 That is, the animation will appear to begin part-way through its play cycle.
jackalmage@5911 857 In the case where an animation has implied starting values and a negative 'animation-delay',
jackalmage@5911 858 the starting values are taken from the moment the animation is applied.
jackalmage@5911 859
jackalmage@5911 860 <table class=propdef>
jackalmage@5911 861 <tr>
jackalmage@5911 862 <th>Name:</th>
sylvaing@6222 863 <td><dfn>animation-delay</dfn>
jackalmage@5911 864 <tr>
sylvaing@6222 865 <th><a href="#values">Value</a>:
dbaron@6739 866 <td> <span>&lt;time&gt;</span> [, <span>&lt;time&gt;</span>]*
jackalmage@5911 867 <tr>
jackalmage@5911 868 <th>Initial:
jackalmage@5911 869 <td>''0s''
jackalmage@5911 870 <tr>
jackalmage@5911 871 <th>Applies To:
sylvaing@7230 872 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 873 <tr>
jackalmage@5911 874 <th>Inherited:
jackalmage@5911 875 <td>no
jackalmage@5911 876 <tr>
dbaron@6735 877 <th>Animatable:
dbaron@6735 878 <td>no
dbaron@6735 879 <tr>
dbaron@6735 880 <th>Percentages:
dbaron@6735 881 <td>N/A
jackalmage@5911 882 <tr>
jackalmage@5911 883 <th>Media:
jackalmage@5911 884 <td>visual
jackalmage@5911 885 <tr>
dbaron@6735 886 <th>Computed Value:
dbaron@6735 887 <td>as specified
jackalmage@5911 888 <tr>
jackalmage@5911 889 <th>Canonical Order:
jackalmage@5911 890 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 891 </table>
jackalmage@5911 892
jackalmage@5911 893
jackalmage@5911 894 <h3 id="animation-fill-mode-property">
jackalmage@5911 895 The 'animation-fill-mode' Property</h3>
jackalmage@5911 896
jackalmage@5911 897 <p>
jackalmage@5911 898 The 'animation-fill-mode' property defines what values are applied by the animation outside the time it is executing.
jackalmage@5911 899 By default, an animation will not affect property values
jackalmage@5911 900 between the time it is applied
jackalmage@5911 901 (the 'animation-name' property is set on an element)
jackalmage@5911 902 and the time it begins execution
jackalmage@5911 903 (which is determined by the 'animation-delay' property).
jackalmage@5911 904 Also, by default an animation does not affect property values after the animation ends
jackalmage@5911 905 (determined by the 'animation-duration' property).
jackalmage@5911 906 The 'animation-fill-mode' property can override this behavior.
jackalmage@5911 907
jackalmage@5911 908 <p>
jackalmage@5911 909 If the value for 'animation-fill-mode' is ''backwards'',
dbaron@6083 910 then the animation will apply
dbaron@6083 911 the property values defined in the keyframe
dbaron@6083 912 that will start the first iteration of the animation,
jackalmage@5911 913 during the period defined by 'animation-delay'.
dbaron@6083 914 These are either the values of the ''from'' keyframe
dbaron@6083 915 (when 'animation-direction' is ''normal'' or ''alternate'')
dbaron@6083 916 or those of the ''to'' keyframe
dbaron@6083 917 (when 'animation-direction' is ''reverse'' or ''alternate-reverse'').
jackalmage@5911 918
jackalmage@5911 919 <p>
jackalmage@5911 920 If the value for 'animation-fill-mode' is ''forwards'',
dbaron@6083 921 then after the animation ends
dbaron@6083 922 (as determined by its 'animation-iteration-count'),
dbaron@6083 923 the animation will apply
dbaron@6083 924 the property values for the time the animation ended.
dbaron@6083 925 When 'animation-iteration-count' is an integer greater than zero,
dbaron@6083 926 the values applied will be
dbaron@6083 927 those for the end of the last completed iteration of the animation
dbaron@6083 928 (rather than the values for
dbaron@6083 929 the start of the iteration that would be next).
dbaron@6083 930 When 'animation-iteration-count' is zero,
dbaron@6083 931 the values applied will be those that would start the first iteration
dbaron@6083 932 (just as when 'animation-fill-mode' is ''backwards'').
jackalmage@5911 933
jackalmage@5911 934 <p>
jackalmage@5911 935 If the value for 'animation-fill-mode' is ''both'',
jackalmage@5911 936 then the animation will follow the rules for both 'forwards' and 'backwards'.
jackalmage@5911 937 That is, it will extend the animation properties in both directions.
jackalmage@5911 938
jackalmage@5911 939 <table class=propdef>
jackalmage@5911 940 <tr>
jackalmage@5911 941 <th>Name:</th>
jackalmage@5911 942 <td><dfn>animation-fill-mode</dfn>
jackalmage@5911 943 <tr>
jackalmage@5911 944 <th><a href="#values">Value</a>:
dbaron@6739 945 <td><span>&lt;single-animation-fill-mode&gt;</span> [ ',' <span>&lt;single-animation-fill-mode&gt;</span> ]*
jackalmage@5911 946 <tr>
jackalmage@5911 947 <th>Initial:
jackalmage@5911 948 <td>''none''
jackalmage@5911 949 <tr>
jackalmage@5911 950 <th>Applies To:
sylvaing@7230 951 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 952 <tr>
jackalmage@5911 953 <th>Inherited:
jackalmage@5911 954 <td>no
jackalmage@5911 955 <tr>
dbaron@6735 956 <th>Animatable:
dbaron@6735 957 <td>no
dbaron@6735 958 <tr>
dbaron@6735 959 <th>Percentages:
dbaron@6735 960 <td>N/A
jackalmage@5911 961 <tr>
jackalmage@5911 962 <th>Media:
jackalmage@5911 963 <td>visual
jackalmage@5911 964 <tr>
dbaron@6735 965 <th>Computed Value:
dbaron@6735 966 <td>as specified
jackalmage@5911 967 <tr>
jackalmage@5911 968 <th>Canonical Order:
jackalmage@5911 969 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 970 </table>
jackalmage@5911 971
dbaron@6736 972 <div class="prod">
dbaron@6739 973 <dfn id="single-animation-fill-mode">&lt;single-animation-fill-mode&gt;</dfn> =
dbaron@6736 974 none | forwards | backwards | both
dbaron@6736 975 </div>
jackalmage@5911 976
jackalmage@5911 977 <h3 id="animation-shorthand-property">
sylvaing@7452 978 The 'animation' Shorthand Property</h3>
jackalmage@5911 979
jackalmage@5911 980 <p>
sylvaing@6815 981 The 'animation' shorthand property is a comma-separated list of
sylvaing@6815 982 animation definitions, each of which combines seven of the animation properties
sylvaing@6815 983 into a single component value.
jackalmage@5911 984
jackalmage@5911 985 <table class=propdef>
jackalmage@5911 986 <tr>
jackalmage@5911 987 <th>Name:</th>
jackalmage@5911 988 <td><dfn>animation</dfn>
jackalmage@5911 989 <tr>
jackalmage@5911 990 <th><a href="#values">Value</a>:
dbaron@6739 991 <td><span>&lt;single-animation&gt;</span> [ ',' <span>&lt;single-animation&gt;</span> ]*
jackalmage@5911 992 <tr>
jackalmage@5911 993 <th>Initial:
jackalmage@5911 994 <td>see individual properties
jackalmage@5911 995 <tr>
jackalmage@5911 996 <th>Applies To:
sylvaing@7230 997 <td>all elements, ::before and ::after pseudo-elements
jackalmage@5911 998 <tr>
jackalmage@5911 999 <th>Inherited:
jackalmage@5911 1000 <td>see individual properties
jackalmage@5911 1001 <tr>
dbaron@6735 1002 <th>Animatable:
dbaron@6735 1003 <td>no
dbaron@6735 1004 <tr>
dbaron@6735 1005 <th>Percentages:
dbaron@6735 1006 <td>N/A
jackalmage@5911 1007 <tr>
jackalmage@5911 1008 <th>Media:
jackalmage@5911 1009 <td>visual
jackalmage@5911 1010 <tr>
dbaron@6735 1011 <th>Computed Value:
dbaron@6735 1012 <td>see individual properties
jackalmage@5911 1013 <tr>
jackalmage@5911 1014 <th>Canonical Order:
jackalmage@5911 1015 <td><abbr title="follows order of property value definition">per grammar</abbr>
jackalmage@5911 1016 </table>
jackalmage@5911 1017
dbaron@6736 1018 <div class="prod">
dbaron@6739 1019 <dfn id="single-animation">&lt;single-animation&gt;</dfn> =
dbaron@6736 1020 &lt;single-animation-name&gt; ||
dbaron@6739 1021 <span>&lt;time&gt;</span> ||
dbaron@6736 1022 &lt;single-animation-timing-function&gt; ||
dbaron@6739 1023 <span>&lt;time&gt;</span> ||
dbaron@6736 1024 &lt;single-animation-iteration-count&gt; ||
dbaron@6736 1025 &lt;single-animation-direction&gt; ||
sylvaing@7177 1026 &lt;single-animation-fill-mode&gt; ||
sylvaing@7177 1027 &lt;single-animation-play-state&gt;
dbaron@6736 1028 </div>
dbaron@6736 1029
dbaron@6736 1030 <p>
sylvaing@6815 1031 Note that order is important within each animation definition:
dbaron@6736 1032 the first value that can be parsed as a <var>&lt;time&gt;</var> is assigned to the
dbaron@6737 1033 animation-duration,
dbaron@6736 1034 and the second value that can be parsed as a <var>&lt;time&gt;</var> is assigned to
dbaron@6737 1035 animation-delay.
dbaron@6736 1036 </p>
dbaron@6736 1037
dbaron@6736 1038 <p class="issue">
dbaron@6736 1039 An alternative proposal is to accept the font shorthand approach
dbaron@6736 1040 of using a "/" character between the values of the same type.
dbaron@6736 1041 e.g. 2s/4s would mean a duration of 2 seconds and a delay of 4 seconds.
dbaron@6736 1042
dbaron@6736 1043 <p class="issue">
dbaron@6736 1044 Need to also explain how order is important in terms of animation-name
dbaron@6736 1045 versus keywords, and probably also adjust the canonical order to
dbaron@6736 1046 match.
jackalmage@5911 1047
jackalmage@5911 1048 <h2 id="animation-events">
jackalmage@5911 1049 Animation Events</h2>
jackalmage@5911 1050
jackalmage@5911 1051 <p>
jackalmage@5911 1052 Several animation related events are available through the <a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html">DOM Event system</a>.
jackalmage@5911 1053 The start and end of an animation,
jackalmage@5911 1054 and the end of each iteration of an animation,
jackalmage@5911 1055 all generate DOM events.
jackalmage@5911 1056 An element can have multiple properties being animated simultaneously.
jackalmage@5911 1057 This can occur either with a single 'animation-name' value
jackalmage@5911 1058 with keyframes containing multiple properties,
jackalmage@5911 1059 or with multiple 'animation-name' values.
jackalmage@5911 1060 For the purposes of events,
jackalmage@5911 1061 each 'animation-name' specifies a single animation.
jackalmage@5911 1062 Therefore an event will be generated for each 'animation-name' value
jackalmage@5911 1063 and not necessarily for each property being animated.
sylvaing@7176 1064
sylvaing@7176 1065 <p>
sylvaing@7176 1066 Any animation for which both a valid keyframe rule and a non-zero duration are
sylvaing@7176 1067 defined will run and generate events; this includes animations with empty
sylvaing@7176 1068 keyframe rules.
jackalmage@5911 1069
jackalmage@5911 1070 <p>
jackalmage@5911 1071 The time the animation has been running is sent with each event generated.
jackalmage@5911 1072 This allows the event handler to determine the current iteration of a looping animation
jackalmage@5911 1073 or the current position of an alternating animation.
jackalmage@5911 1074 This time does not include any time the animation was in the ''paused'' play state.
jackalmage@5911 1075
jackalmage@5911 1076
jackalmage@5911 1077 <h3 id='AnimationEvent-interface'>
sylvaing@7452 1078 Interface <code>AnimationEvent</code></h3>
jackalmage@5911 1079
jackalmage@5911 1080 <p>
jackalmage@5911 1081 The <dfn>AnimationEvent</dfn> interface provides specific contextual information associated with Animation events.
jackalmage@5911 1082
jackalmage@5911 1083
jackalmage@5911 1084 <h4 id='AnimationEvent-IDL'>
jackalmage@5911 1085 IDL Definition</h4>
jackalmage@5911 1086
jackalmage@5911 1087 <pre class='idl'>
dbaron@7423 1088 [Constructor(DOMString <var title="">type</var>, optional <i>AnimationEventInit</i> <var title="">animationEventInitDict</var>)]
sylvaing@6807 1089 interface AnimationEvent : <a class="external" href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#event">Event</a> {
sylvaing@6807 1090 readonly attribute DOMString <a href="#AnimationEvent-animationName" title="AnimationEvent-lengthComputable">animationName</a>;
sylvaing@6807 1091 readonly attribute float <a href="#AnimationEvent-elapsedTime" title="dom-ProgressEvent-loaded">elapsedTime</a>;
sylvaing@7223 1092 readonly attribute DOMString <a href="#AnimationEvent-pseudoElement" title="AnimationEvent-pseudoElement">pseudoElement</a>;
sylvaing@6807 1093 };
sylvaing@6807 1094
dbaron@7423 1095 dictionary <dfn id="AnimationEventInit">AnimationEventInit</dfn> : <a class="external" href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#eventinit">EventInit</a> {
sylvaing@6807 1096 DOMString <span title="AnimationEventInit-animationName">animationName</span>;
sylvaing@6807 1097 float <span title="AnimationEventInit-loaded">elapsedTime</span>;
sylvaing@7223 1098 DOMString <span title="AnimationEventInit-pseudoElement">pseudoElement</span>;
sylvaing@6807 1099 }
sylvaing@6807 1100
sylvaing@6807 1101 </pre>
jackalmage@5911 1102
jackalmage@5911 1103
jackalmage@5911 1104 <h4 id='AnimationEvent-attributes'>
jackalmage@5911 1105 Attributes</h4>
jackalmage@5911 1106
jackalmage@5911 1107 <dl>
jackalmage@5911 1108 <dt><code><dfn id='AnimationEvent-animationName'>animationName</dfn></code> of type <code>DOMString</code>, readonly
jackalmage@5911 1109 <dd>
jackalmage@5911 1110 The value of the 'animation-name' property of the animation that fired the event.
jackalmage@5911 1111
jackalmage@5911 1112 <dt><code><dfn id='AnimationEvent-elapsedTime'>elapsedTime</dfn></code> of type <code>float</code>, readonly
jackalmage@5911 1113 <dd>
jackalmage@5911 1114 The amount of time the animation has been running,
jackalmage@5911 1115 in seconds,
jackalmage@5911 1116 when this event fired,
jackalmage@5911 1117 excluding any time the animation was paused.
jackalmage@5911 1118 For an "animationstart" event,
jackalmage@5911 1119 the elapsedTime is zero unless there was a negative value for 'animation-delay',
jackalmage@5911 1120 in which case the event will be fired with an <code>elapsedTime</code> of (-1 * delay).
sylvaing@7223 1121
sylvaing@7223 1122 <dt><code><dfn id='AnimationEvent-pseudoElement'>pseudoElement</dfn></code> of type <code>DOMString</code>, readonly
sylvaing@7223 1123 <dd>
sylvaing@7223 1124 The name (beginning with two colons) of the CSS pseudo-element on
sylvaing@7223 1125 which the animation runs (in which case the target of the event
sylvaing@7223 1126 is that pseudo-element's corresponding element), or the empty string
sylvaing@7223 1127 if the animation runs on an element (which means the target of the event
sylvaing@7223 1128 is that element).
jackalmage@5911 1129 </dl>
jackalmage@5911 1130
sylvaing@6807 1131 <p>
dbaron@7423 1132 <code id="AnimationEvent-constructor">AnimationEvent(type, animationEventInitDict)</code>
sylvaing@6807 1133 is an <a class="external" href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-event-constructor">event constructor</a>.
jackalmage@5911 1134
jackalmage@5911 1135 <h3 id='AnimationEvent-types'>
jackalmage@5911 1136 Types of <code>AnimationEvent</code></h3>
jackalmage@5911 1137
jackalmage@5911 1138 <p>
jackalmage@5911 1139 The different types of Animation events that can occur are:
jackalmage@5911 1140
jackalmage@5911 1141 <dl>
jackalmage@5911 1142 <dt><dfn>animationstart</dfn>
jackalmage@5911 1143 <dd>
jackalmage@5911 1144 The <code>animationstart</code> event occurs at the start of the animation.
jackalmage@5911 1145 If there is an 'animation-delay'
jackalmage@5911 1146 then this event will fire once the delay period has expired.
jackalmage@5911 1147 A negative delay will cause the event to fire with an <code>elapsedTime</code> equal to the absolute value of the delay.
jackalmage@5911 1148
jackalmage@5911 1149 <ul>
jackalmage@5911 1150 <li>Bubbles: Yes
jackalmage@5911 1151 <li>Cancelable: No
dbaron@7407 1152 <li>Context Info: animationName, pseudoElement
jackalmage@5911 1153 </ul>
jackalmage@5911 1154
jackalmage@5911 1155 <dt><dfn>animationend</dfn>
jackalmage@5911 1156 <dd>
jackalmage@5911 1157 The <code>animationend</code> event occurs when the animation finishes.
jackalmage@5911 1158
jackalmage@5911 1159 <ul>
jackalmage@5911 1160 <li>Bubbles: Yes
jackalmage@5911 1161 <li>Cancelable: No
dbaron@7407 1162 <li>Context Info: animationName, elapsedTime, pseudoElement
jackalmage@5911 1163 </ul>
jackalmage@5911 1164
jackalmage@5911 1165 <dt><dfn>animationiteration</dfn>
jackalmage@5911 1166 <dd>
jackalmage@5911 1167 The <code>animationiteration</code> event occurs at the end of each iteration of an animation,
jackalmage@5911 1168 except when an <code>animationend</code> event would fire at the same time.
jackalmage@5911 1169 This means that this event does not occur for animations with an iteration count of one or less.
jackalmage@5911 1170
jackalmage@5911 1171 <ul>
jackalmage@5911 1172 <li>Bubbles: Yes
jackalmage@5911 1173 <li>Cancelable: No
dbaron@7407 1174 <li>Context Info: animationName, elapsedTime, pseudoElement
jackalmage@5911 1175 </ul>
jackalmage@5911 1176 </dl>
jackalmage@5911 1177
jackalmage@5911 1178
jackalmage@5911 1179 <h2 id="dom-interfaces">
jackalmage@5911 1180 DOM Interfaces</h2>
jackalmage@5911 1181
jackalmage@5911 1182 <p>
jackalmage@5911 1183 CSS animation is exposed to the CSSOM through a pair of new interfaces describing the keyframes.
jackalmage@5911 1184
jackalmage@5911 1185
jackalmage@5911 1186 <h3 id='CSSRule-interface'>
jackalmage@5911 1187 Interface <code>CSSRule</code></h3>
jackalmage@5911 1188
jackalmage@5911 1189 <p>
jackalmage@5911 1190 The following 2 rule types are added to the <dfn>CSSRule</dfn> interface.
jackalmage@5911 1191 They provide identification for the new keyframe and keyframes rules.
jackalmage@5911 1192
jackalmage@5911 1193
jackalmage@5911 1194 <h4 id='CSSRule-IDL'>
jackalmage@5911 1195 IDL Definition</h4>
jackalmage@5911 1196
jackalmage@5911 1197 <pre class='idl'>
jackalmage@5911 1198 interface CSSRule {
dbaron@6082 1199 ...
dbaron@6082 1200 const unsigned short KEYFRAMES_RULE = 7;
dbaron@6082 1201 const unsigned short KEYFRAME_RULE = 8;
dbaron@6082 1202 ...
jackalmage@5911 1203 };</pre>
jackalmage@5911 1204
jackalmage@5911 1205
jackalmage@5911 1206 <h3 id='CSSKeyframeRule-interface'>
sylvaing@7452 1207 Interface <code>CSSKeyframeRule</code></h3>
jackalmage@5911 1208 <p>
jackalmage@5911 1209 The <dfn>CSSKeyframeRule</dfn> interface represents the style rule for a single key.
jackalmage@5911 1210
jackalmage@5911 1211
jackalmage@5911 1212 <h4 id='CSSKeyframeRule-IDL'>
jackalmage@5911 1213 IDL Definition</h4>
jackalmage@5911 1214
jackalmage@5911 1215 <pre class='idl'>
jackalmage@5911 1216 interface CSSKeyframeRule : CSSRule {
dbaron@6082 1217 attribute DOMString keyText;
dbaron@6082 1218 readonly attribute CSSStyleDeclaration style;
jackalmage@5911 1219 };</pre>
jackalmage@5911 1220
jackalmage@5911 1221
jackalmage@5911 1222 <h4 id='CSSKeyframeRule-attributes'>
jackalmage@5911 1223 Attributes</h4>
jackalmage@5911 1224
jackalmage@5911 1225 <dl>
jackalmage@5911 1226 <dt><code><dfn id='CSSKeyframeRule-keyText'>keyText</dfn></code> of type <code>DOMString</code>
jackalmage@5911 1227 <dd>
sylvaing@6814 1228 This attribute represents the keyframe selector as a comma-separated
sylvaing@6814 1229 list of percentage values. The ''from'' and ''to'' keywords map to
sylvaing@6814 1230 ''0%'' and ''100%'', respectively.
jackalmage@5911 1231
jackalmage@5911 1232 <dt><code><dfn id='CSSKeyframeRule-style'>style</dfn></code> of type <code>CSSStyleDeclaration</code>
jackalmage@5911 1233 <dd>
jackalmage@5911 1234 This attribute represents the style associated with this keyframe.
jackalmage@5911 1235 </dl>
jackalmage@5911 1236
jackalmage@5911 1237
jackalmage@5911 1238 <h3 id='CSSKeyframesRule-interface'>
jackalmage@5911 1239 Interface <code>CSSKeyframesRule</code></h3>
jackalmage@5911 1240
jackalmage@5911 1241 <p>
jackalmage@5911 1242 The <dfn>CSSKeyframesRule</dfn> interface represents a complete set of keyframes for a single animation.
jackalmage@5911 1243
jackalmage@5911 1244
jackalmage@5911 1245 <h4 id='CSSKeyframesRule-IDL'>
jackalmage@5911 1246 IDL Definition</h4>
jackalmage@5911 1247
jackalmage@5911 1248 <pre class='idl'>
jackalmage@5911 1249 interface CSSKeyframesRule : CSSRule {
dbaron@6082 1250 attribute DOMString name;
dbaron@6082 1251 readonly attribute CSSRuleList cssRules;
jackalmage@5911 1252
dbaron@6082 1253 void appendRule(in DOMString rule);
dbaron@6082 1254 void deleteRule(in DOMString key);
dbaron@6082 1255 CSSKeyframeRule findRule(in DOMString key);
jackalmage@5911 1256 };</pre>
jackalmage@5911 1257
jackalmage@5911 1258
jackalmage@5911 1259 <h4 id='CSSKeyframesRule-attributes'>
jackalmage@5911 1260 Attributes</h4>
jackalmage@5911 1261
jackalmage@5911 1262 <dl>
jackalmage@5911 1263 <dt><code><dfn id='CSSKeyframesRule-name'>name</dfn></code> of type <code>DOMString</code>
jackalmage@5911 1264 <dd>
jackalmage@5911 1265 This attribute is the name of the keyframes, used by the 'animation-name' property.<br>
jackalmage@5911 1266
jackalmage@5911 1267 <dt><code><dfn id='CSSKeyframesRules-cssRules'>cssRules</dfn></code> of type <code>CSSRuleList</code>
jackalmage@5911 1268 <dd>
jackalmage@5911 1269 This attribute gives access to the keyframes in the list.
sylvaing@7452 1270 </dl>
jackalmage@5911 1271
jackalmage@5911 1272
jackalmage@5911 1273 <h4 id='CSSKeyframesRule-appendRule'>
jackalmage@5911 1274 The <code>appendRule</code> method</h4>
jackalmage@5911 1275
jackalmage@5911 1276 <p>
jackalmage@5911 1277 The <dfn>appendRule</dfn> method appends the passed CSSKeyframeRule into the list at the passed key.
jackalmage@5911 1278
jackalmage@5911 1279 <p>
jackalmage@5911 1280 Parameters:
jackalmage@5911 1281
jackalmage@5911 1282 <dl>
jackalmage@5911 1283 <dt><code>rule</code> of type <code>DOMString</code>
jackalmage@5911 1284
jackalmage@5911 1285 <dd>
jackalmage@5911 1286 The rule to be appended,
jackalmage@5911 1287 expressed in the same syntax as one entry in the ''@keyframes'' rule.
jackalmage@5911 1288 </dl>
jackalmage@5911 1289
jackalmage@5911 1290 <p>
jackalmage@5911 1291 No Return Value
jackalmage@5911 1292
jackalmage@5911 1293 <p>
jackalmage@5911 1294 No Exceptions
jackalmage@5911 1295
jackalmage@5911 1296
jackalmage@5911 1297 <h4 id='CSSKeyframesRules-deleteRule'>
jackalmage@5911 1298 The <code>deleteRule</code> method</h4>
jackalmage@5911 1299
jackalmage@5911 1300 <p>
jackalmage@5911 1301 The <dfn>deleteRule</dfn> method deletes the CSSKeyframeRule with the passed key.
jackalmage@5911 1302 If a rule with this key does not exist,
jackalmage@5911 1303 the method does nothing.
jackalmage@5911 1304
jackalmage@5911 1305 <p>
jackalmage@5911 1306 Parameters:
jackalmage@5911 1307
jackalmage@5911 1308 <dl>
jackalmage@5911 1309 <dt><code>key</code> of type <code>DOMString</code>
jackalmage@5911 1310 <dd>
jackalmage@5911 1311 The key which describes the rule to be deleted.
jackalmage@5911 1312 The key must resolve to a number between 0 and 1,
jackalmage@5911 1313 or the rule is ignored.
jackalmage@5911 1314 </dl>
jackalmage@5911 1315
jackalmage@5911 1316 <p>
jackalmage@5911 1317 No Return Value
jackalmage@5911 1318
jackalmage@5911 1319 <p>
jackalmage@5911 1320 No Exceptions
jackalmage@5911 1321
jackalmage@5911 1322
jackalmage@5911 1323 <h4 id='CSSKeyframesRule-findRule'>
jackalmage@5911 1324 The <code>findRule</code> method</h4>
jackalmage@5911 1325
jackalmage@5911 1326 <p>
jackalmage@5911 1327 The <code>findRule</code> method returns the rule with a key matching the passed key.
jackalmage@5911 1328 If no such rule exists,
jackalmage@5911 1329 a null value is returned.
jackalmage@5911 1330
jackalmage@5911 1331 <p>
jackalmage@5911 1332 Parameters:
jackalmage@5911 1333
jackalmage@5911 1334 <dl>
jackalmage@5911 1335 <dt><code>key</code> of type <code>DOMString</code>
jackalmage@5911 1336 <dd>
jackalmage@5911 1337 The key which described the rule to find.
jackalmage@5911 1338 The key must resolve to a number between 0 and 1,
jackalmage@5911 1339 or the rule is ignored.
jackalmage@5911 1340 </dl>
jackalmage@5911 1341
jackalmage@5911 1342 <p>
jackalmage@5911 1343 Return Value:
jackalmage@5911 1344
jackalmage@5911 1345 <dl>
jackalmage@5911 1346 <dt><code>CSSKeyframeRule</code>
jackalmage@5911 1347 <dd>
jackalmage@5911 1348 The found rule.
jackalmage@5911 1349 </dl>
jackalmage@5911 1350
jackalmage@5911 1351 <p>
jackalmage@5911 1352 No Exceptions
jackalmage@5911 1353
dino@937 1354
dbaron@5304 1355 <h2 id="acknowledgments">Acknowledgments</h2>
dbaron@5304 1356
dbaron@5304 1357 <p>Thanks especially to the feedback from
dbaron@5312 1358 Tab Atkins,
dbaron@6736 1359 Carine Bournez,
dbaron@5312 1360 Estelle Weyl,
dbaron@5304 1361 and all the rest of the
jackalmage@5911 1362 <a href="http://lists.w3.org/Archives/Public/www-style/">www-style</a> community.
dbaron@5304 1363
dino@937 1364 <h2>References</h2>
dino@937 1365
dino@937 1366 <h3 class="no-num">Normative references</h3>
dino@937 1367 <!--normative-->
dino@937 1368
dino@937 1369 <h3 class="no-num">Other references</h3>
dino@937 1370 <!--informative-->
dino@937 1371
dino@937 1372
dino@937 1373
dino@937 1374 <h2 class="no-num">Property index</h2>
dino@937 1375 <!-- properties -->
dino@937 1376
dino@937 1377
dino@937 1378
dino@937 1379 <h2 class="no-num" id="index">Index</h2>
dino@937 1380 <!--index-->
dino@937 1381
dino@937 1382 </body>
dino@937 1383 </html>
dino@937 1384 <!-- Keep this comment at the end of the file
dino@937 1385 Local variables:
dino@937 1386 mode: sgml
jackalmage@5911 1387 sgml-declaration:"~/SGML/HTML4.decl"
dino@937 1388 sgml-default-doctype-name:"html"
dino@937 1389 sgml-minimize-attributes:t
jackalmage@5911 1390 sgml-nofill-elements:("pre" "style" "br")
jackalmage@5911 1391 sgml-live-element-indicator:t
jackalmage@5911 1392 sgml-omittag:nil
jackalmage@5911 1393 sgml-shorttag:nil
jackalmage@5911 1394 sgml-namecase-general:t
jackalmage@5911 1395 sgml-general-insert-case:lower
jackalmage@5911 1396 sgml-always-quote-attributes:t
jackalmage@5911 1397 sgml-indent-step:nil
jackalmage@5911 1398 sgml-indent-data:t
jackalmage@5911 1399 sgml-parent-document:nil
jackalmage@5911 1400 sgml-exposed-tags:nil
jackalmage@5911 1401 sgml-local-catalogs:nil
jackalmage@5911 1402 sgml-local-ecat-files:nil
dino@937 1403 End:
dbaron@6082 1404 -->

mercurial