improve and extend the timeout

This commit is contained in:
Cloudburst 2022-10-03 10:54:08 +02:00 committed by GitHub
parent f3fdeb3543
commit 261efde164
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
@keyframes five-s-hide { @keyframes timeout-hide {
0% { } 0% { }
80% { } 99% { }
100% { 100% {
height: 0; height: 0;
padding: 0; padding: 0;
@ -8,13 +8,13 @@
} }
} }
@keyframes five-s-show { @keyframes timeout-show {
0% { 0% {
height: 0; height: 0;
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
80% { 99% {
height: 0; height: 0;
padding: 0; padding: 0;
margin: 0; margin: 0;
@ -23,10 +23,10 @@
} }
.swap-child > *:nth-child(1) { .swap-child > *:nth-child(1) {
animation: five-s-hide 5s linear 0s 1 normal forwards; animation: timeout-hide 10s linear 0s 1 normal forwards;
overflow: hidden; overflow: hidden;
} }
.swap-child > *:nth-child(2) { .swap-child > *:nth-child(2) {
animation: five-s-show 5s linear 0s 1 normal forwards; animation: timeout-show 10s linear 0s 1 normal forwards;
overflow: hidden; overflow: hidden;
} }