-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader3.css
More file actions
77 lines (71 loc) · 2.31 KB
/
loader3.css
File metadata and controls
77 lines (71 loc) · 2.31 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*----------------------------- Loader 3 -----------------------------*/
.loader3{
background-color: black;
height: 100%;
width: 100%;
opacity: 0.8;
top: 0;
left: 0;
position: fixed;
display: none;
justify-content: center;
align-items: center;
}
.loader3Inside1{
height: 20px; /* Increase/decrese the size of the spinner */
width: 20px;
margin: 5px;
background-color: red;
border-radius: 50%;
border-width: 10px; /* Increase/decrese the width of the spinner */
animation-name: loaderThreeOne;
animation-duration: 0.7s; /* Increase/decrese the speed of the spinner */
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.loader3Inside2{
height: 20px; /* Increase/decrese the size of the spinner */
width: 20px;
margin: 5px;
background-color: blue;
border-radius: 50%;
border-width: 10px; /* Increase/decrese the width of the spinner */
animation-name: loaderThreeTwo;
animation-duration: 0.7s; /* Increase/decrese the speed of the spinner */
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.loader3Inside3{
height: 20px; /* Increase/decrese the size of the spinner */
width: 20px;
margin: 5px;
background-color: green;
border-radius: 50%;
border-width: 10px; /* Increase/decrese the width of the spinner */
animation-name: loaderThreeThree;
animation-duration: 0.7s; /* Increase/decrese the speed of the spinner */
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes loaderThreeOne {
0% {margin-top: 0px;transform: rotate(0deg);}
25% {margin-top: 30px;}
50% {margin-top: 0px;border-radius: 0%;}
75% {margin-top:-30px;}
100% {margin-top: 0px;transform: rotate(360deg);}
}
@keyframes loaderThreeTwo {
0% {margin-top: 0px; transform: rotate(0deg);}
25% {margin-top:-30px;}
50% {margin-top: 0px;border-radius: 0%;}
75% {margin-top: 30px;}
100% {margin-top: 0px; transform: rotate(360deg);}
}
@keyframes loaderThreeThree {
0% {margin-top: 0px;transform: rotate(0deg);}
25% {margin-top: 30px;}
50% {margin-top: 0px;border-radius: 0%;}
75% {margin-top:-30px;}
100% {margin-top: 0px;transform: rotate(360deg);}
}
/*--------------------------------- Loader 3 Ends --------------------------*/