Adjusted some UI and finished the Ping function

This commit is contained in:
Donald Zou
2024-06-12 17:54:29 +08:00
parent eb18857ecc
commit f0f486da9e
11 changed files with 355 additions and 1013 deletions

View File

@@ -1092,4 +1092,26 @@ pre.index-alert {
.fade3-leave-to {
transform: scale(0.8);
opacity: 0;
}
.list-move, /* apply transition to moving elements */
.list-enter-active,
.list-leave-active {
transition: all 0.4s cubic-bezier(0.82, 0.58, 0.17, 0.9);
}
.list-leave-active{
position: absolute;
}
.list-enter-from,
.list-leave-to {
opacity: 0;
transform: translateY(30px);
}
/* ensure leaving items are taken out of layout flow so that moving
animations can be calculated correctly. */
.list-leave-active {
position: absolute;
}