mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +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;
|
|
}
|
|
}
|