GUACAMOLE-724: Display nifty "pop" animation when a new client appears within the client panel.

This commit is contained in:
Michael Jumper
2021-06-16 01:58:01 -07:00
parent aae80292cb
commit 1f2cd94a65
2 changed files with 10 additions and 0 deletions

View File

@@ -48,3 +48,12 @@
from { opacity: 1; }
to { opacity: 0; }
}
/**
* popin: Increase in size and opacity from invisibly tiny and transparent to
* full size and opaque.
*/
@keyframes popin {
from { transform: scale(0); opacity: 0; }
to { transform: scale(1); }
}

View File

@@ -92,6 +92,7 @@
background: black;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
animation: 0.1s linear 0s popin;
opacity: 0.5;
transition: opacity 0.25s;