mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
70 lines
1.3 KiB
HTML
70 lines
1.3 KiB
HTML
<div class="loader">
|
|
<div class="box-1">
|
|
</div>
|
|
<span>
|
|
Loading.....
|
|
</span>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Akshdeep74644 - Tags: loader */
|
|
.loader {
|
|
position: relative;
|
|
}
|
|
|
|
.box-1 {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
height: 150px;
|
|
width: 150px;
|
|
background-color: #FFFFFF;
|
|
background-image: linear-gradient(135deg, #FFFFFF 0%, #6284FF 34%, #FF0000 100%);
|
|
border-radius: 50%;
|
|
animation: rotate 3s linear infinite;
|
|
box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.box-1::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 15px;
|
|
background: #f5f5f5;
|
|
border-radius: 50%;
|
|
box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
|
|
}
|
|
|
|
.loader span {
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 65px;
|
|
left: 25px;
|
|
color: black;
|
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
letter-spacing: 2px;
|
|
font-weight: 800;
|
|
font-size: 1rem;
|
|
animation: text-animate412 3s linear infinite;
|
|
}
|
|
|
|
@keyframes text-animate412 {
|
|
|
|
10% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
</style>
|