-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathrect38.module.css
More file actions
54 lines (45 loc) · 911 Bytes
/
Copy pathrect38.module.css
File metadata and controls
54 lines (45 loc) · 911 Bytes
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
.loader {
position: relative;
width: 48px;
height: 48px;
background: #fff;
border-radius: 50%;
animation:ellipseAnimation 2s linear infinite;
}
@keyframes ellipseAnimation {
0% {
border-radius: 50%;
}
12.5% {
border-radius: 0 50% 50% 50%;
transform: rotate(45deg);
}
25% {
border-radius: 0 0 50% 50%;
transform: rotate(90deg);
}
37.5% {
border-radius: 0 0 0 50%;
transform: rotate(135deg);
}
50% {
border-radius: 0;
transform: rotate(180deg);
}
62.5% {
border-radius: 50% 0 0 0;
transform: rotate(225deg);
}
75% {
border-radius: 50% 50% 0 0;
transform: rotate(270deg);
}
87.5% {
border-radius: 50% 50% 50% 0;
transform: rotate(315deg);
}
100% {
border-radius: 50%;
transform: rotate(360deg);
}
}