2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-05-28 15:15:32 +00:00
|
|
|
<div :class="[$style.root, { [$style.inline]: inline, [$style.colored]: colored, [$style.mini]: mini }]">
|
|
|
|
<div :class="$style.container">
|
|
|
|
<svg :class="[$style.spinner, $style.bg]" viewBox="0 0 168 168" xmlns="http://www.w3.org/2000/svg">
|
2022-05-19 08:21:08 +00:00
|
|
|
<g transform="matrix(1.125,0,0,1.125,12,12)">
|
|
|
|
<circle cx="64" cy="64" r="64" style="fill:none;stroke:currentColor;stroke-width:21.33px;"/>
|
2022-05-19 06:24:35 +00:00
|
|
|
</g>
|
|
|
|
</svg>
|
2022-05-28 15:15:32 +00:00
|
|
|
<svg :class="[$style.spinner, $style.fg]" viewBox="0 0 168 168" xmlns="http://www.w3.org/2000/svg">
|
2022-05-19 08:21:08 +00:00
|
|
|
<g transform="matrix(1.125,0,0,1.125,12,12)">
|
|
|
|
<path d="M128,64C128,28.654 99.346,0 64,0C99.346,0 128,28.654 128,64Z" style="fill:none;stroke:currentColor;stroke-width:21.33px;"/>
|
2022-05-19 06:24:35 +00:00
|
|
|
</g>
|
|
|
|
</svg>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-15 22:47:28 +00:00
|
|
|
<script lang="ts" setup>
|
2022-07-14 14:32:00 +00:00
|
|
|
import { } from 'vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-15 22:47:28 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
inline?: boolean;
|
|
|
|
colored?: boolean;
|
|
|
|
mini?: boolean;
|
|
|
|
}>(), {
|
|
|
|
inline: false,
|
|
|
|
colored: true,
|
|
|
|
mini: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-05-28 15:15:32 +00:00
|
|
|
<style lang="scss" module>
|
2022-05-19 06:24:35 +00:00
|
|
|
@keyframes spinner {
|
2020-02-10 11:44:59 +00:00
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-28 15:15:32 +00:00
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
padding: 32px;
|
|
|
|
text-align: center;
|
2021-04-16 14:04:25 +00:00
|
|
|
cursor: wait;
|
|
|
|
|
2022-05-19 06:24:35 +00:00
|
|
|
--size: 40px;
|
2021-08-15 11:26:44 +00:00
|
|
|
|
2021-04-16 14:04:25 +00:00
|
|
|
&.colored {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-02-11 17:52:37 +00:00
|
|
|
&.inline {
|
|
|
|
display: inline;
|
|
|
|
padding: 0;
|
2021-08-15 11:26:44 +00:00
|
|
|
--size: 32px;
|
|
|
|
}
|
2020-02-11 17:52:37 +00:00
|
|
|
|
2021-08-15 11:26:44 +00:00
|
|
|
&.mini {
|
|
|
|
padding: 16px;
|
|
|
|
--size: 32px;
|
2020-02-11 17:52:37 +00:00
|
|
|
}
|
2022-05-28 15:15:32 +00:00
|
|
|
}
|
2020-02-11 17:52:37 +00:00
|
|
|
|
2022-05-28 15:15:32 +00:00
|
|
|
.container {
|
|
|
|
position: relative;
|
|
|
|
width: var(--size);
|
|
|
|
height: var(--size);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-02-10 11:44:59 +00:00
|
|
|
|
2022-05-28 15:15:32 +00:00
|
|
|
.spinner {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: var(--size);
|
|
|
|
height: var(--size);
|
|
|
|
fill-rule: evenodd;
|
|
|
|
clip-rule: evenodd;
|
|
|
|
stroke-linecap: round;
|
|
|
|
stroke-linejoin: round;
|
|
|
|
stroke-miterlimit: 1.5;
|
|
|
|
}
|
2021-04-16 14:04:25 +00:00
|
|
|
|
2022-05-28 15:15:32 +00:00
|
|
|
.bg {
|
|
|
|
opacity: 0.275;
|
|
|
|
}
|
2021-04-16 14:04:25 +00:00
|
|
|
|
2022-05-28 15:15:32 +00:00
|
|
|
.fg {
|
|
|
|
animation: spinner 0.5s linear infinite;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|