I've added a blink animation to one of the elements from my menu-bar. It works perfectly in Mozilla, but in Chrome it stops after being clicked and only clearing the browser data helps. Sometimes even that doesn't solve it.
Can you help? It does not work on IE either, but that is not as important.
.menu-box #menu-item-368 a {
animation-name: blink;
animation-duration: 500ms;
animation-iteration-count: infinite;
animation-direction: alternate;
-webkit-animation-name: blink;
-webkit-animation-duration: 500ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-ms-animation-name: blink;
-ms-animation-duration: 500ms;
-ms-animation-iteration-count: infinite;
-ms-animation-direction: alternate;
}
@keyframes blink {
from {
color: white;
}
to {
color: red;
}
}
@-webkit-keyframes blink {
from {
-webkit-color: white;
}
to {
-webkit-color: red;
}
}
@-ms-keyframes blink {
from {
-ms-color: white;
}
to {
-ms-color: red;
}
}
remove the -webkit- and -ms- prefixes from the color property
to check if prefixes are needed check caniuse.com