forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-animations-2.json
53 lines (53 loc) · 1.67 KB
/
css-animations-2.json
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
{
"spec": {
"title": "CSS Animations Level 2",
"url": "https://drafts.csswg.org/css-animations-2/"
},
"properties": {
"animation-composition": {
"name": "animation-composition",
"value": "<single-animation-composition>#",
"initial": "replace",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "list, each item a keyword as specified",
"canonicalOrder": "per grammar",
"animationType": "not animatable",
"styleDeclaration": [
"animation-composition",
"animationComposition"
]
},
"animation-timeline": {
"name": "animation-timeline",
"value": "<single-animation-timeline>#",
"initial": "auto",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "list, each item either a case-sensitive css identifier or the keywords none, auto.",
"canonicalOrder": "per grammar",
"animatable": "no",
"styleDeclaration": [
"animation-timeline",
"animationTimeline"
]
}
},
"descriptors": {},
"valuespaces": {
"<single-animation-composition>": {
"value": "replace | add | accumulate"
},
"<single-animation-timeline>": {
"value": "auto | none | <timeline-name>"
},
"<timeline-name>": {
"value": "<custom-ident> | <string>"
},
"<single-animation>": {
"value": "<time> || <easing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ] || <single-animation-timeline>"
}
}
}