@app-elements/loading-indicator
Version:
Show a three dots loading indicator.
26 lines (23 loc) • 389 B
text/less
@keyframes blink {
0% {
opacity: 0.2;
}
20% {
opacity: 1;
}
100% {
opacity: 0.2;
}
}
.loading-ellipsis span {
animation-name: blink;
animation-duration: 1.4s;
animation-iteration-count: infinite;
animation-fill-mode: both;
}
.loading-ellipsis span:nth-child(2) {
animation-delay: 0.2s;
}
.loading-ellipsis span:nth-child(3) {
animation-delay: 0.4s;
}