1 2 3 4 5 6 7 8 |
.blink_me { animation: blinker 2.4s linear infinite; font-weight: bold; } @keyframes blinker { 50% { opacity: 0; } } |
This simple CSS code can make a text / element blink, you just need to set the timer in seconds and provide the element that you want to blink with the .blink_me class.
Click for DEMO here.