mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
20 lines
243 B
CSS
20 lines
243 B
CSS
.opaque {
|
|
opacity: 1;
|
|
}
|
|
|
|
.transparent {
|
|
animation-name: transparent;
|
|
animation-duration: 1s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
@keyframes transparent {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|