2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-14 02:23:02 +00:00
|
|
|
<span :class="$style.root">
|
|
|
|
<span :class="$style.dot">.</span><span :class="$style.dot">.</span><span :class="$style.dot">.</span>
|
|
|
|
</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2023-01-14 02:23:02 +00:00
|
|
|
<style lang="scss" module>
|
2022-12-27 09:29:39 +00:00
|
|
|
@keyframes ellipsis {
|
|
|
|
0%, 80%, 100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
2023-01-14 02:23:02 +00:00
|
|
|
|
|
|
|
.root {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.dot {
|
|
|
|
animation: ellipsis 1.4s infinite ease-in-out both;
|
|
|
|
|
|
|
|
&:nth-child(1) {
|
|
|
|
animation-delay: 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
animation-delay: 0.16s;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
|
|
|
animation-delay: 0.32s;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|