-
Notifications
You must be signed in to change notification settings - Fork 78
/
css-transitions.json
119 lines (119 loc) · 3.98 KB
/
css-transitions.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
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
{
"spec": {
"title": "CSS Transitions Level 1",
"url": "https://drafts.csswg.org/css-transitions-1/"
},
"properties": [
{
"name": "transition-property",
"href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-property",
"value": "none | <single-transition-property>#",
"initial": "all",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "the keyword none else a list of identifiers",
"canonicalOrder": "per grammar",
"animationType": "not animatable",
"values": [
{
"name": "none",
"prose": "A value of none means that no property will transition. Otherwise, a list of properties to be transitioned, or the keyword all which indicates that all properties are to be transitioned, is given.",
"href": "https://drafts.csswg.org/css-transitions-1/#valdef-transition-property-none",
"type": "value",
"value": "none"
},
{
"name": "all",
"prose": "A value of none means that no property will transition. Otherwise, a list of properties to be transitioned, or the keyword all which indicates that all properties are to be transitioned, is given.",
"href": "https://drafts.csswg.org/css-transitions-1/#valdef-transition-property-all",
"type": "value",
"value": "all"
}
],
"styleDeclaration": [
"transition-property",
"transitionProperty"
]
},
{
"name": "transition-duration",
"href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration",
"value": "<time [0s,∞]>#",
"initial": "0s",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "list, each item a duration",
"canonicalOrder": "per grammar",
"animationType": "not animatable",
"styleDeclaration": [
"transition-duration",
"transitionDuration"
]
},
{
"name": "transition-timing-function",
"href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function",
"value": "<easing-function>#",
"initial": "ease",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "as specified",
"canonicalOrder": "per grammar",
"animationType": "not animatable",
"styleDeclaration": [
"transition-timing-function",
"transitionTimingFunction"
]
},
{
"name": "transition-delay",
"href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-delay",
"value": "<time>#",
"initial": "0s",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "list, each item a duration",
"canonicalOrder": "per grammar",
"animationType": "not animatable",
"styleDeclaration": [
"transition-delay",
"transitionDelay"
]
},
{
"name": "transition",
"href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition",
"value": "<single-transition>#",
"initial": "see individual properties",
"appliesTo": "all elements",
"inherited": "no",
"percentages": "N/A",
"computedValue": "see individual properties",
"animationType": "not animatable",
"canonicalOrder": "per grammar",
"styleDeclaration": [
"transition"
]
}
],
"atrules": [],
"selectors": [],
"values": [
{
"name": "<single-transition-property>",
"value": "all | <custom-ident>",
"href": "https://drafts.csswg.org/css-transitions-1/#single-transition-property",
"type": "type"
},
{
"name": "<single-transition>",
"value": "[ none | <single-transition-property> ] || <time> || <easing-function> || <time>",
"href": "https://drafts.csswg.org/css-transitions-1/#single-transition",
"type": "type"
}
]
}