mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
15 lines
218 B
CSS
15 lines
218 B
CSS
.opaque {
|
|
opacity: 1;
|
|
}
|
|
|
|
.transparent {
|
|
animation-name: transparent;
|
|
animation-duration: 1s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
@keyframes transparent {
|
|
from { opacity: 1; }
|
|
to { opacity: 0; }
|
|
}
|