<section class="load-circle">
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
<div class="load-item"></div>
</section>
body {
background: #000;
overflow:hidden;
}
.load-circle {
width: 64px;
height: 64px;
position: absolute;
left:50%;
top:50%;
margin-top:-20px;
margin-left:-20px;
animation: infinite linear 0.42s loadCircle;
animation: infinite linear 0.42s loadCircle;
animation: infinite linear 0.42s loadCircle;
animation: infinite linear 0.42s loadCircle;
animation: infinite linear 0.42s loadCircle;
}
.load-item {
width: 20px;
transform:scale(5);
transform:scale(5);
transform:scale(5);
transform:scale(5);
transform:scale(5);
height: 20px;
border-radius: 70%;
border: solid 1px #fff;
position: absolute;
top: 0;
left: 0;
}
.load-item:nth-child(1){
margin: 30px 28px;
width: 4px;
height: 4px;
border-right: none;
border-bottom: none;
}
.load-item:nth-child(2){
margin: 30px 25px;
width: 8px;
border-width: 2px;
height: 8px;
border-top: none;
border-left: none;
}
.load-item:nth-child(3){
margin: 24px 23px;
width: 15px;
border-width: 3px;
height: 13px;
border-bottom: none;
border-right: none;
}
.load-item:nth-child(4){
margin: 24px 19px;
width: 21px;
border-width: 2px;
height: 22px;
border-top: none;
border-left: none;
}
.load-item:nth-child(5){
margin: 17px 17px;
width: 29px;
border-width: 3px;
height: 29px;
border-bottom: none;
border-right: none;
}
.load-item:nth-child(6){
margin: 16px 10px;
width: 37px;
border-width: 3px;
height: 37px;
border-top: none;
border-left: none;
}
.load-item:nth-child(7){
margin: 7px 8px;
width: 38px;
border-width: 3px;
height: 48px;
border-right: none;
border-bottom: none;
border-top: none;
}
.load-item:nth-child(8){
margin: 5px 7px;
width: 51px;
border-width: 4px;
height: 48px;
border-right: none;
border-bottom: none;
border-left: none;
}
.load-item:nth-child(9){
margin: 6px 4px;
width: 52px;
border-width: 4px;
height: 60px;
border-left: none;
border-bottom: none;
border-top: none;
}
.load-item:nth-child(10){
margin: 46px 14px;
width: 36px;
border-width: 4px;
height: 18px;
border-right: none;
border-left: none;
border-top: none;
}
@-webkit-keyframes loadCircle {
0% {
transform:rotateZ(0);
}100% {
transform:rotateZ(360deg);
}
}
@-moz-keyframes loadCircle {
0% {
transform:rotateZ(0);
}100% {
transform:rotateZ(360deg);
}
}
@-o-keyframes loadCircle {
0% {
transform:rotateZ(0);
}100% {
transform:rotateZ(360deg);
}
}
@-ms-keyframes loadCircle {
0% {
transform:rotateZ(0);
}100% {
transform:rotateZ(360deg);
}
}
@keyframes loadCircle {
0% {
transform:rotateZ(0);
}100% {
transform:rotateZ(360deg);
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.