mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
39 lines
921 B
HTML
39 lines
921 B
HTML
<div class="loader">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 66 66" height="100px" width="100px" class="spinner">
|
|
<circle stroke="url(#gradient)" r="20" cy="33" cx="33" stroke-width="1" fill="transparent" class="path"></circle>
|
|
<linearGradient id="gradient">
|
|
<stop stop-opacity="1" stop-color="#fe0000" offset="0%"></stop>
|
|
<stop stop-opacity="0" stop-color="#af3dff" offset="100%"></stop>
|
|
</linearGradient>
|
|
|
|
</svg>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by aadium - Tags: gradient, loader */
|
|
.loader {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.spinner {
|
|
width: 250px;
|
|
height: 150px;
|
|
position: relative;
|
|
animation: rotation 0.75s linear infinite;
|
|
border-radius: 100em;
|
|
}
|
|
|
|
.path {
|
|
stroke-dasharray: 100;
|
|
stroke-dashoffset: 20;
|
|
stroke-linecap: round;
|
|
}
|
|
|
|
@keyframes rotation {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
</style>
|