我可以在Nativescript中为前景色(即文本颜色)设置动画。
我似乎无法让它发挥作用。
背景色正在起作用。
@keyframes session-favorite-selected {
from { transform: scale(1, 1) rotate(120); opacity: 0; animation-timing-function: linear; background-color: white; color: red; }
to { transform: scale(1, 1) rotate(0); opacity: 1; background-color: green; color: white; }
}