ui(animation): update fade-in-down-animation

This commit is contained in:
XPoet 2021-04-29 10:51:17 +08:00
parent 378d18c86f
commit 7a9f4170a8
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ transition-t(property, delay, duration, function) {
.fade-in-down-animation { .fade-in-down-animation {
animation-fill-mode: both; animation-fill-mode: both;
animation-duration: 0.8s; animation-duration: 1s;
animation-name: fade-in-down; animation-name: fade-in-down;
} }
@ -44,7 +44,7 @@ transition-t(property, delay, duration, function) {
@keyframes fade-in-down { @keyframes fade-in-down {
0% { 0% {
opacity: 0; opacity: 0;
transform: translateY(-20px); transform: translateY(-50px);
} }
100% { 100% {