mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
20 lines
284 B
CSS
20 lines
284 B
CSS
.button {
|
|
background-color: green;
|
|
}
|
|
|
|
.button:highlighted {
|
|
animation-name: highlight;
|
|
animation-duration: 2s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
@keyframes highlight {
|
|
from {
|
|
background-color: yellow;
|
|
}
|
|
|
|
to {
|
|
background-color: red;
|
|
}
|
|
}
|