/*球动画*/
.ball {
width: 20px;
height: 20px;
background-color: #FF5A65;
border-radius: 50%;
transform: scale(1);
animation: ball .6s ease-in-out infinite alternate;
}
.ball:nth-child(1) {
animation-delay: 0;
}
.ball:nth-child(2) {
animation-delay: -.9s;
}
@keyframes ball {
0% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
网友评论