mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
38 lines
677 B
HTML
38 lines
677 B
HTML
<span class="loader">Loading</span>
|
|
<style>
|
|
/* From Uiverse.io by Shoh2008 - Tags: loader */
|
|
.loader {
|
|
font-size: 48px;
|
|
display: inline-block;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-weight: bold;
|
|
color: #FFF;
|
|
letter-spacing: 2px;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.loader::after {
|
|
content: 'Loading';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
color: #263238;
|
|
text-shadow: 0 0 2px #FFF, 0 0 1px #FFF, 0 0 1px #FFF;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
animation: animloader 6s linear infinite;
|
|
}
|
|
|
|
@keyframes animloader {
|
|
0% {
|
|
height: 100%;
|
|
}
|
|
|
|
100% {
|
|
height: 0%;
|
|
}
|
|
}
|
|
</style>
|