We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1809a commit 44b840fCopy full SHA for 44b840f
readme.md
@@ -36,6 +36,7 @@ const CONDITION = 14
36
const FUNCTION_START = 15
37
const FUNCTION_END = 16
38
const JS_FUNCTION_VALUE = 17
39
+const ANIMATION_NAME = 18
40
```
41
42
#### Rule start
@@ -494,3 +495,33 @@ body, .foo {
494
495
]],
496
[RULE_END]
497
]
498
+
499
+#### Keyframes
500
501
+```css
502
+@keyframes fadeIn {
503
+ from {
504
+ opacity: 0;
505
+ }
506
+ to {
507
+ opacity: 1;
508
509
+}
510
+```
511
512
+```js
513
+[
514
+ [RULE_START, 7],
515
+ [ANIMATION_NAME, 'fadeIn'],
516
+ [RULE_START, 8],
517
+ [RULE_NAME, 'from'],
518
+ [PROPERTY, 'opacity'],
519
+ [VALUE, 0],
520
+ [RULE_END],
521
522
+ [RULE_NAME, 'to'],
523
524
+ [VALUE, 1],
525
526
+ [RULE_END]
527
+]
0 commit comments