I would want to blink a text with two different colors:
For example: blinking a text white-green-white-green-white-green
I don't mind if jQuery or CSS.
I would want to blink a text with two different colors:
For example: blinking a text white-green-white-green-white-green
I don't mind if jQuery or CSS.
Against my better judgement LOL...You will need to adjust for cross-browser compatibility with webkit, etc
EDITTED TO WORK WITH ALL BROWSERS
<a href="#"> text</a>
/* css */
a {
animation-duration: 400ms;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes blink {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
no support for IE 9: animation-iteration-count
Note to support non-supporting current browsers you can use Modernizr:
See How do I normalize CSS3 Transition functions across browsers?
CSS3 animation-fill-mode polyfill
@-webkit-keyframes blink {
from { color: green; }
to { color: white; }
}
@-moz-keyframes blink {
from { color: green; }
to { color: white; }
}
@-ms-keyframes blink {
from { color: green; }
to { color: white; }
}
@-o-keyframes blink {
from { color: green; }
to { color: white; }
}
@keyframes blink {
from { color: green; }
to { color: white; }
}
.blink {
color: green;
-webkit-animation: blink 2s 3 alternate;
-moz-animation: blink 2s 3 alternate;
-ms-animation: blink 2s 3 alternate;
-o-animation: blink 2s 3 alternate;
animation: blink 2s 3 alternate;
}