Last active
August 29, 2015 14:11
-
-
Save jsturgis/df3b63902a7f2cdc9770 to your computer and use it in GitHub Desktop.
blur text content with css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.blur .content { | |
color: transparent; /* hide text */ | |
cursor: default; | |
text-shadow: 0 0 5px rgba(0,0,0,0.5); /* make text blurry */ | |
opacity: 0.75; /* fade text slightly */ | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
user-select: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://jsfiddle.net/jsturgis/0f22xdw7/