分解文章

This commit is contained in:
zyronon
2023-08-31 19:01:33 +08:00
parent 30417b29a8
commit c89b61a887
3 changed files with 176 additions and 107 deletions

View File

@@ -24,4 +24,28 @@
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
@keyframes shake {
10%,
90% {
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
transform: translate3d(2px, 0, 0);
}
30%,
50%,
70% {
transform: translate3d(-4px, 0, 0);
}
40%,
60% {
transform: translate3d(4px, 0, 0);
}
}