Broken Neon Sign
HTML
<h1 id="neon">MooTool<span>s</span></h1>
CSS
@font-face {
font-family: GraublauWeb;
src: url(http://www.opentype.info/demo/fonts/GraublauWeb.otf) format("opentype");
}
body {
background: #222;
}
h1 {
font-size: 7.6em;
font-family: GraublauWeb;
color: #F191BC;
margin: 50px 0;
text-align: center;
text-shadow: 0 0 10px #E20074;
letter-spacing: -8px;
/*text-transform: uppercase;*/
}
span {
display: inline-block;
position: relative;
top: 0.67em;
left: 5px;
-webkit-transform: rotate(100deg);
}
JavaScript
// WEBKIT only
(function(){
$('neon').setStyle('text-shadow', '0px 0px '+$random(15, 55)+'px #F191BC');
}).periodical(10);