2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2022-12-20 04:00:05 +02:00
|
|
|
<div :class="[$style.root, { [$style.inline]: inline, [$style.colored]: colored, [$style.mini]: mini, [$style.em]: em }]">
|
2022-05-28 18:15:32 +03:00
|
|
|
<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 11:21:08 +03: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 09:24:35 +03:00
|
|
|
</g>
|
|
|
|
</svg>
|
2022-05-28 18:15:32 +03:00
|
|
|
<svg :class="[$style.spinner, $style.fg]" viewBox="0 0 168 168" xmlns="http://www.w3.org/2000/svg">
|
2022-05-19 11:21:08 +03: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 09:24:35 +03:00
|
|
|
</g>
|
|
|
|
</svg>
|
|
|
|
</div>
|
2020-01-29 21:37:25 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-16 00:47:28 +02:00
|
|
|
<script lang="ts" setup>
|
2022-07-14 17:32:00 +03:00
|
|
|
import { } from 'vue';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-16 00:47:28 +02:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
inline?: boolean;
|
|
|
|
colored?: boolean;
|
|
|
|
mini?: boolean;
|
2022-12-20 04:00:05 +02:00
|
|
|
em?: boolean;
|
2022-01-16 00:47:28 +02:00
|
|
|
}>(), {
|
|
|
|
inline: false,
|
|
|
|
colored: true,
|
|
|
|
mini: false,
|
2022-12-20 04:00:05 +02:00
|
|
|
em: false,
|
2020-01-29 21:37:25 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-05-28 18:15:32 +03:00
|
|
|
<style lang="scss" module>
|
2022-05-19 09:24:35 +03:00
|
|
|
@keyframes spinner {
|
2020-02-10 13:44:59 +02:00
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-28 18:15:32 +03:00
|
|
|
.root {
|
2020-01-29 21:37:25 +02:00
|
|
|
padding: 32px;
|
|
|
|
text-align: center;
|
2021-04-16 17:04:25 +03:00
|
|
|
cursor: wait;
|
|
|
|
|
2022-08-27 10:26:14 +03:00
|
|
|
--size: 38px;
|
2021-08-15 14:26:44 +03:00
|
|
|
|
2021-04-16 17:04:25 +03:00
|
|
|
&.colored {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2020-02-11 19:52:37 +02:00
|
|
|
&.inline {
|
|
|
|
display: inline;
|
|
|
|
padding: 0;
|
2021-08-15 14:26:44 +03:00
|
|
|
--size: 32px;
|
|
|
|
}
|
2020-02-11 19:52:37 +02:00
|
|
|
|
2021-08-15 14:26:44 +03:00
|
|
|
&.mini {
|
|
|
|
padding: 16px;
|
|
|
|
--size: 32px;
|
2020-02-11 19:52:37 +02:00
|
|
|
}
|
2022-12-20 04:00:05 +02:00
|
|
|
|
|
|
|
&.em {
|
|
|
|
display: inline;
|
|
|
|
padding: 0;
|
|
|
|
--size: 1em;
|
|
|
|
}
|
2022-05-28 18:15:32 +03:00
|
|
|
}
|
2020-02-11 19:52:37 +02:00
|
|
|
|
2022-05-28 18:15:32 +03:00
|
|
|
.container {
|
|
|
|
position: relative;
|
|
|
|
width: var(--size);
|
|
|
|
height: var(--size);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-02-10 13:44:59 +02:00
|
|
|
|
2022-05-28 18:15:32 +03: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 17:04:25 +03:00
|
|
|
|
2022-05-28 18:15:32 +03:00
|
|
|
.bg {
|
|
|
|
opacity: 0.275;
|
|
|
|
}
|
2021-04-16 17:04:25 +03:00
|
|
|
|
2022-05-28 18:15:32 +03:00
|
|
|
.fg {
|
|
|
|
animation: spinner 0.5s linear infinite;
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
</style>
|