-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloading.css
60 lines (53 loc) · 952 Bytes
/
loading.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
#loading-screen{
margin-top: 160px;
margin-left: 680px;
justify-content: space-between;
}
#roller{
margin-left: 40px;
}
#loadin{
margin-top: 30px;
}
#moonkey{
margin-top: 30px;
}
#loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid #333;
border-top: 4px solid #666;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
.jummper{
animation: jump 0.8s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes jump {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-20px);
}
}