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
use float_pigment_css::{StyleSheet, StyleSheetGroup};
#[test]
fn test_keyframes() {
let mut ssg = StyleSheetGroup::new();
let ss = StyleSheet::from_str(
r#"
@keyframes hello {
0% {
top: 0;
}
50% {
top: 30px;
left: 20px;
}
50% {
top: 10px;
}
100% {
top: 0;
}
}
@keyframes box-ani_2 {
120% {
margin-left: 0px;
}
80% {
margin-left: 200px;
}
}
@keyframes mymove_3 {
0% {
}
to {
margin-left: 200px;
}
}
@keyframes mymove_4 {
20% {
margin-left: 20px;
}
80% {
margin-left: 200px;
}
}
"#,
);
println!("{:?}", &ss);
ssg.append(ss);
}