Blur Text

HTML
<div class="blur">Hover Me</div>
CSS
.blur{ position: absolute; left: 50%; top: 50%; margin-top: -50px; margin-left: -180px; color: rgba(0, 0, 0, 0); font-family:Helvetica; font-size: 100px; text-shadow: 0 0 20px rgba(0,0,0,1); transition-duration: 0.6s; } .blur:hover{ color: rgba(0, 0, 0, 0); font-family:Helvetica; font-size: 100px; text-shadow: 0 0 0px rgba(0,0,0,1); transition-duration: 0.5s; cursor: pointer; }
JAVASCRIPT
Expand for more options Login