Files
5chan/src/components/loading-ellipsis/loading-ellipsis.module.css
T

24 lines
363 B
CSS
Raw Normal View History

2024-03-22 14:12:13 +01:00
.ellipsis {
display: inline-block;
}
.ellipsis:after {
content: '...';
position: absolute;
-webkit-animation: ellipsis steps(4, end) 1200ms infinite;
animation: ellipsis steps(4, end) 1500ms infinite;
width: 0px;
overflow: hidden;
}
@keyframes ellipsis {
to {
width: 1.3em;
}
}
@-webkit-keyframes ellipsis {
to {
width: 1.3em;
}
}