0

How to make a link blinkable

Html

21st Mar 2017, 4:18 PM
Mrinmoy Kar
Mrinmoy Kar - avatar
2 odpowiedzi
+ 1
Hello, in your css, put : .blink { animation: blink 1s steps(1) infinite; } @keyframes blink { 50% { color: transparent; } } and in your html you can use the blink class like this : <a href="location" class="blink">blinkable</a>
21st Mar 2017, 4:27 PM
Jérémy BOURGIN
0
okay.. thanx Bro.
21st Mar 2017, 4:31 PM
Mrinmoy Kar
Mrinmoy Kar - avatar