index.html
**
loading-1
**
**loading.css**
#loading-1 {
position: relative;
width: 300px;
height: 80px;
margin: 200px auto;
border-bottom: 3px solid rgba(65, 192, 240, 1);
}
#loading-1 span.item{
position: absolute;
bottom: 0;
width: 50px;
height: 20px;
animation-name: loading_one;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#loading-1 span.item.item-1{
animation-delay: .2s;
}
#loading-1 span.item.item-2{
left: 70px;
animation-delay: .4s;
}
#loading-1 span.item.item-3{
left: 130px;
animation-delay: .6s;
}
#loading-1 span.item.item-4{
left: 190px;
animation-delay: .8s;
}
#loading-1 span.item.item-5{
left: 250px;
animation-delay: 1s;
}
@keyframes loading_one{
0%{
height: 20px;
background-color: #f33a1d;
}
50%{
height: 80px;
background-color: #1ff339;
}
100%{
height: 20px;
background-color: #1890ff;
}
}
