mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
36 lines
591 B
HTML
36 lines
591 B
HTML
<div class="spinner">
|
|
<div class="inner">
|
|
</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by myselfvenky - Tags: loader */
|
|
.spinner {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 100%;
|
|
background-color: aqua;
|
|
display: grid;
|
|
place-items: center;
|
|
animation: zoomin 1.5s infinite alternate-reverse;
|
|
position: relative;
|
|
}
|
|
|
|
.inner {
|
|
background-color: #212121;
|
|
width: 80%;
|
|
height: 80%;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
@keyframes zoomin {
|
|
0% {
|
|
transform: scale(1);
|
|
box-shadow: 0 0 100px 20px rgb(16, 71, 71);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1.5);
|
|
box-shadow: 0 0 100px 20px #000;
|
|
}
|
|
}
|
|
</style>
|