108 lines
2.2 KiB
CSS
Executable File
108 lines
2.2 KiB
CSS
Executable File
.busy-frame {
|
|
position: absolute;
|
|
z-index: 10001;
|
|
top: 0;
|
|
left: 0;
|
|
width: 1920px;
|
|
height: 1080px;
|
|
padding: 0px;
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
display: none;
|
|
}
|
|
|
|
.busy-frame #busy_animation {
|
|
position: relative;
|
|
z-index: 10002;
|
|
top: 426px;
|
|
left: 874px;
|
|
width: 256px;
|
|
height: 256px;
|
|
padding: 0px;
|
|
display: none;
|
|
}
|
|
|
|
.busy-frame #busy_animation div {
|
|
transform-origin: 60px 80px;
|
|
animation: loading-spinner 1.2s linear infinite;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:after {
|
|
content: " ";
|
|
display: block;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 60px;
|
|
width: 12px;
|
|
height: 28px;
|
|
border-radius: 5%;
|
|
background: #fff;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(1) {
|
|
transform: rotate(0deg);
|
|
animation-delay: -1.1s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(2) {
|
|
transform: rotate(30deg);
|
|
animation-delay: -1s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(3) {
|
|
transform: rotate(60deg);
|
|
animation-delay: -0.9s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(4) {
|
|
transform: rotate(90deg);
|
|
animation-delay: -0.8s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(5) {
|
|
transform: rotate(120deg);
|
|
animation-delay: -0.7s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(6) {
|
|
transform: rotate(150deg);
|
|
animation-delay: -0.6s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(7) {
|
|
transform: rotate(180deg);
|
|
animation-delay: -0.5s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(8) {
|
|
transform: rotate(210deg);
|
|
animation-delay: -0.4s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(9) {
|
|
transform: rotate(240deg);
|
|
animation-delay: -0.3s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(10) {
|
|
transform: rotate(270deg);
|
|
animation-delay: -0.2s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(11) {
|
|
transform: rotate(300deg);
|
|
animation-delay: -0.1s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(12) {
|
|
transform: rotate(330deg);
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
@keyframes loading-spinner {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
} |