-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimate.css
62 lines (54 loc) · 1.08 KB
/
animate.css
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
/*
* @Author: charliegallentine
* @Date: 2019-12-20 11:36:40
* @Last Modified by: charliegallentine
* @Last Modified time: 2019-12-20 11:37:32
*/
@keyframes rotcw {
from {
transform: rotate(0deg)
translate(-3px)
rotate(0deg);
}
to {
transform: rotate(360deg)
translate(-3px)
rotate(-360deg);
}
}
@keyframes rotccw {
from {
transform: rotate(0deg)
translate(-3px)
rotate(0deg);
}
to {
transform: rotate(360deg)
translate(-3px)
rotate(-360deg);
}
}
.revolve-one {
/*border: 2px solid #333;*/
animation: rotcw 3s infinite linear;
}
.revolve-two {
/*border: 2px solid #333;*/
animation: rotcw 3.5s infinite linear;
}
.revolve-three {
/*border: 2px solid #333;*/
animation: rotcw 4s infinite linear;
}
.revolve-four {
/*border: 2px solid #333;*/
animation: rotccw 3.25s infinite linear;
}
.revolve-five {
/*border: 2px solid #333;*/
animation: rotccw 3.75s infinite linear;
}
.revolve-six {
/*border: 2px solid #333;*/
animation: rotccw 4.1s infinite linear;
}