mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
90 lines
1.4 KiB
HTML
90 lines
1.4 KiB
HTML
<div class="sharingon">
|
|
<div class="ring">
|
|
<div class="to"></div>
|
|
<div class="to"></div>
|
|
<div class="to"></div>
|
|
<div class="circle"></div>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by shadowfax29 - Source: shadowfax29 - Tags: circle loader, aesthetic, sharingon */
|
|
.sharingon {
|
|
width: 6em;
|
|
height: 6em;
|
|
background-color: red;
|
|
border: 6px solid black;
|
|
animation: rot 1s ease-in-out infinite;
|
|
}
|
|
|
|
.ring {
|
|
position: absolute;
|
|
content: "";
|
|
left: 50%;
|
|
top: 50%;
|
|
width: 3.5em;
|
|
height: 3.5em;
|
|
border: 4px solid rgb(110, 13 ,13 ,0.5);
|
|
transform: translate(-50%,-50%);
|
|
}
|
|
|
|
.sharingon, .ring, .to,.circle {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.to,.circle {
|
|
position: absolute;
|
|
content: "";
|
|
width: 0.9em;
|
|
height: 0.9em;
|
|
background-color: black;
|
|
}
|
|
|
|
.to:nth-child(1) {
|
|
top: -0.5em;
|
|
left: 50%;
|
|
transform: translate(-40%);
|
|
}
|
|
|
|
.to::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -0.5em;
|
|
right: -0.2em;
|
|
width: 1.1em;
|
|
height: 0.9em;
|
|
box-sizing: border-box;
|
|
border-left: 16px solid black;
|
|
border-radius: 100% 0 0;
|
|
}
|
|
|
|
.to:nth-child(2) {
|
|
bottom: 0.5em;
|
|
left: -0.35em;
|
|
transform: rotate(-120deg);
|
|
}
|
|
|
|
.to:nth-child(3) {
|
|
bottom: 0.5em;
|
|
right: -0.35em;
|
|
transform: rotate(120deg);
|
|
}
|
|
|
|
.circle {
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
box-shadow: 0 0 20px 1px;
|
|
width: 1em;
|
|
height: 1em;
|
|
}
|
|
|
|
@keyframes rot {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|