acdr-ui/dist/dev/mp-weixin/components/LoadingAnimation.wxss

42 lines
756 B
Plaintext
Raw Normal View History

2024-09-19 07:20:14 +08:00
.loading-animation.data-v-ca9fbe80 {
display: flex;
gap: 5px;
justify-content: space-around;
width: 100px;
}
.ball.data-v-ca9fbe80 {
width: 15px;
height: 15px;
border-radius: 50%;
animation: bounce-ca9fbe80 1.2s infinite ease-in-out;
}
.ball.data-v-ca9fbe80:nth-child(1) {
animation-delay: -0.32s;
}
.ball.data-v-ca9fbe80:nth-child(2) {
animation-delay: -0.16s;
}
.ball.data-v-ca9fbe80:nth-child(3) {
animation-delay: -0.13s;
}
.ball.data-v-ca9fbe80:nth-child(4) {
animation-delay: -0.07s;
}
.ball.data-v-ca9fbe80:nth-child(5) {
animation-delay: -0.04s;
}
.ball.data-v-ca9fbe80:nth-child(6) {
animation-delay: 0s;
}
@keyframes bounce-ca9fbe80 {
0%,
80%,
100% {
transform: scale(0);
}
40% {
transform: scale(1);
}
}