im trying to do an animation with CSS that makes text change color when you hover over it. Here is my code, im really not sure what my issue is here. Doesen't work in firefox or in chrome.
@keyframes swap {
from {background-color: black;}
to {background-color: purple;}
}
text.normText:hover {
animation-name: swap;
animation-duration: 2.5s;
}
The keyframes part doesen't highlight as a special word in Netbeans so maybe thats the issue?