D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
trinary
Full window
Github gist
Blink tags in css animation.
<html> <head> <style> h1 { -webkit-animation-name: blinker; -webkit-animation-duration: 2s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: steps(1,end); } @-webkit-keyframes blinker { from { opacity: 1; } 50% { opacity: 0; } to { opacity: 1; } } </style> </head> <body> <h1>HEY I'M BLINKING</h1> </body> </html>