vjfw/web/css/tripledot.css

14 lines
252 B
CSS
Raw Normal View History

2024-05-25 14:07:17 +00:00
@keyframes dot-blink {
0% { content: ''; }
33% { content: '.'; }
66% { content: '..'; }
100% { content: '...'; }
}
.loading::after {
content: '';
display: inline-block;
animation: dot-blink 0.80s infinite steps(1, end);
}