mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
14 lines
168 B
CSS
14 lines
168 B
CSS
@keyframes test {
|
|
from {
|
|
background-color: red;
|
|
}
|
|
|
|
50% {
|
|
background-color: yellow;
|
|
}
|
|
|
|
to {
|
|
background-color: green;
|
|
}
|
|
}
|