mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
43 lines
No EOL
524 B
HTML
43 lines
No EOL
524 B
HTML
<div class="loadingtext">
|
|
<p>Loading</p>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by polidahiya - Tags: simple, loading, loader, download, downloading */
|
|
.loadingtext p {
|
|
color: white;
|
|
position: relative;
|
|
}
|
|
|
|
.loadingtext p::after {
|
|
position: absolute;
|
|
animation: b 3s infinite linear;
|
|
color: white;
|
|
content: "";
|
|
left: 105%;
|
|
}
|
|
|
|
@keyframes b {
|
|
0% {
|
|
content: "";
|
|
}
|
|
|
|
10% {
|
|
content: ".";
|
|
}
|
|
|
|
40% {
|
|
content: "..";
|
|
}
|
|
|
|
70% {
|
|
content: "...";
|
|
}
|
|
|
|
100% {
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
</style>
|
|
|