@@ -437,7 +437,7 @@ <h3 id="animation-name-property">
437437 < td > < dfn > animation-name</ dfn >
438438 < tr >
439439 < th > < a href ="#values "> Value</ a > :
440- < td > [ none | <user-ident > ]#
440+ < td > [ none | IDENT ] [, [ none | IDENT ] ]*
441441 < tr >
442442 < th > Initial:
443443 < td > ''none''
@@ -521,7 +521,7 @@ <h3 id="animation-duration-property">
521521 < td > < dfn > animation-duration</ dfn >
522522 < tr >
523523 < th > < a href ="#values "> Value</ a > :
524- < td > <time> #
524+ < td > <time> [, <time>]*
525525 < tr >
526526 < th > Initial:
527527 < td > ''0s''
@@ -570,12 +570,23 @@ <h3 id="animation-timing-function-property">
570570 < td > < dfn > animation-timing-function</ dfn >
571571 < tr >
572572 < th > < a href ="#values "> Value</ a > :
573- < td > [
574- ease | linear | ease-in | ease-out | ease-in-out |
575- step-start | step-end |
576- steps(<number> [, [ start | end ] ]) |
577- cubic-bezier(<number> , <number> , <number> , <number> )
578- ]#
573+ < td >
574+ [
575+ ease | linear | ease-in | ease-out | ease-in-out |
576+ step-start | step-end |
577+ steps(<number> [, [ start | end ] ]?) |
578+ cubic-bezier(<number>, <number>, <number>,
579+ <number>)
580+ ]
581+ [,
582+ [
583+ ease | linear | ease-in | ease-out | ease-in-out |
584+ step-start | step-end |
585+ steps(<number> [, [ start | end ] ]?) |
586+ cubic-bezier(<number>, <number>, <number>,
587+ <number>)
588+ ]
589+ ]*
579590 < tr >
580591 < th > Initial:
581592 < td > ''ease''
@@ -630,7 +641,8 @@ <h3 id="animation-iteration-count-property">
630641 < td > < dfn > animation-iteration-count</ dfn >
631642 < tr >
632643 < th > < a href ="#values "> Value</ a > :
633- < td > [ infinite | <number> ]#
644+ < td > [ infinite | <number> ]
645+ [, [ infinite | <number> ] ]*
634646 < tr >
635647 < th > Initial:
636648 < td > ''1''
@@ -669,7 +681,8 @@ <h3 id="animation-direction-property">
669681 < td > < dfn > animation-direction</ dfn >
670682 < tr >
671683 < th > < a href ="#values "> Value</ a > :
672- < td > [ normal | reverse | alternate | alternate-reverse ]#
684+ < td > [ normal | reverse | alternate | alternate-reverse ]
685+ [, [ normal | reverse | alternate | alternate-reverse ] ]*
673686 < tr >
674687 < th > Initial:
675688 < td > ''normal''
@@ -737,7 +750,8 @@ <h3 id="animation-play-state-property">
737750 < td > < dfn > animation-play-state</ dfn >
738751 < tr >
739752 < th > < a href ="#values "> Value</ a > :
740- < td > [ running | paused ]#
753+ < td > [ running | paused ]
754+ [, [ running | paused ] ]*
741755 < tr >
742756 < th > Initial:
743757 < td > ''running''
@@ -786,7 +800,7 @@ <h3 id="animation-delay-property">
786800 < td > < dfn > foo</ dfn >
787801 < tr >
788802 < th > < a href ="#values "> animation-delay</ a > :
789- < td > <time> #
803+ < td > <time> [, <time>]*
790804 < tr >
791805 < th > Initial:
792806 < td > ''0s''
@@ -862,7 +876,8 @@ <h3 id="animation-fill-mode-property">
862876 < td > < dfn > animation-fill-mode</ dfn >
863877 < tr >
864878 < th > < a href ="#values "> Value</ a > :
865- < td > [ none | forwards | backwards | both ]#
879+ < td > [ none | forwards | backwards | both ]
880+ [, [ none | forwards | backwards | both ] ]*
866881 < tr >
867882 < th > Initial:
868883 < td > ''none''
@@ -909,13 +924,22 @@ <h3 id="animation-shorthand-property">
909924 < td > < dfn > animation</ dfn >
910925 < tr >
911926 < th > < a href ="#values "> Value</ a > :
912- < td > [ <'animation-name'> ||
913- <'animation-duration'> ||
914- <'animation-timing-function'> ||
915- <'animation-delay'> ||
916- <'animation-iteration-count'> ||
917- <'animation-direction'> ||
918- <'animation-fill-mode'> ]#
927+ < td >
928+ [
929+ <animation-name> || <animation-duration> ||
930+ <animation-timing-function> || <animation-delay> ||
931+ <animation-iteration-count> || <animation-direction> ||
932+ <animation-fill-mode>
933+ ]
934+ [,
935+ [
936+ <animation-name> || <animation-duration> ||
937+ <animation-timing-function> || <animation-delay> ||
938+ <animation-iteration-count> || <animation-direction> ||
939+ <animation-fill-mode>
940+ ]
941+ ]*
942+
919943 < tr >
920944 < th > Initial:
921945 < td > see individual properties
0 commit comments