D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jazzido
Full window
Github gist
Glowing text effect with CSS3
<html> <head> <style type="text/css"> .glow { -webkit-animation-duration: 1s; -webkit-animation-name: glow; -webkit-animation-direction: alternate; -webkit-animation-iteration-count: infinite; animation-duration: 1s; animation-name: glow; animation-direction: alternate; animation-iteration-count: infinite; } @-webkit-keyframes glow { from { text-shadow: 0 0 0px red; } to { text-shadow: 0 0 20px red; } } </style> </head> <body> <h1 class="glow">GLOW GLOW GLOW</h1> </body> </html>