Created
August 17, 2012 13:03
-
-
Save Pushplaybang/3378592 to your computer and use it in GitHub Desktop.
text blur on links - other than the one selected or hovered hovered over with jQuery and css
This file contains 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
.link { | |
-webkit-transition:all 100ms linear; | |
-moz-transition:all 100ms linear; | |
-ms-transition:all 100ms linear; | |
-o-transition:all 100ms linear; | |
transition:all 100ms linear; | |
text-align: center; | |
color: #a7c0d0; | |
-webkit-text-shadow: 2px 3px 5px rgba(0,0,0,0.8); | |
-moz-text-shadow: 2px 3px 5px rgba(0,0,0,0.8); | |
-ms-text-shadow: 2px 3px 5px rgba(0,0,0,0.8); | |
-o-text-shadow: 2px 3px 5px rgba(0,0,0,0.8); | |
text-shadow: 2px 3px 5px rgba(0,0,0,0.8); | |
} | |
.link:hover { | |
color:#eeeeee; | |
} | |
.blur { | |
opacity: 0.5; | |
-webkit-text-shadow: 0px 0px 30px #A7C0D0,0px 0px 18px #A7C0D0, 0px 0px 18px #A7C0D0,0px 0px 12px #A7C0D0, 0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0, -1px -1px 3px #A7C0D0, 0px 0px 8px #A7C0D0, 1px 1px 3px #A7C0D0; | |
-moz-text-shadow: 0px 0px 30px #A7C0D0,0px 0px 18px #A7C0D0, 0px 0px 18px #A7C0D0,0px 0px 12px #A7C0D0, 0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0, -1px -1px 3px #A7C0D0, 0px 0px 8px #A7C0D0, 1px 1px 3px #A7C0D0; | |
-ms-text-shadow:0px 0px 30px #A7C0D0,0px 0px 18px #A7C0D0, 0px 0px 18px #A7C0D0,0px 0px 12px #A7C0D0, 0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0, -1px -1px 3px #A7C0D0, 0px 0px 8px #A7C0D0, 1px 1px 3px #A7C0D0; | |
-o-text-shadow: 0px 0px 30px #A7C0D0,0px 0px 18px #A7C0D0, 0px 0px 18px #A7C0D0,0px 0px 12px #A7C0D0, 0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0, -1px -1px 3px #A7C0D0, 0px 0px 8px #A7C0D0, 1px 1px 3px #A7C0D0; | |
text-shadow:0px 0px 30px #A7C0D0,0px 0px 18px #A7C0D0, 0px 0px 18px #A7C0D0,0px 0px 12px #A7C0D0, 0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0,0px 0px 12px #A7C0D0, -1px -1px 3px #A7C0D0, 0px 0px 8px #A7C0D0, 1px 1px 3px #A7C0D0; | |
} |
This file contains 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
//add and remove blur class to siblings in a matched set containing the item in a hover or active state |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment