Files
NativeScript/e2e/animation/app/css-animations/visual-states/page.css
2019-08-22 13:57:40 +03:00

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;
}
}