refactor(client): use css modules

This commit is contained in:
syuilo 2023-01-14 11:23:02 +09:00
parent 91105845d8
commit ce5506f331
2 changed files with 42 additions and 40 deletions

View file

@ -1,28 +1,10 @@
<template>
<span class="mk-ellipsis">
<span>.</span><span>.</span><span>.</span>
</span>
<span :class="$style.root">
<span :class="$style.dot">.</span><span :class="$style.dot">.</span><span :class="$style.dot">.</span>
</span>
</template>
<style lang="scss" scoped>
.mk-ellipsis {
> span {
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;
}
}
}
<style lang="scss" module>
@keyframes ellipsis {
0%, 80%, 100% {
opacity: 1;
@ -31,4 +13,24 @@
opacity: 0;
}
}
.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;
}
}
</style>