Created
December 1, 2011 06:37
-
-
Save nodesocket/1414355 to your computer and use it in GitHub Desktop.
Video CSS3 Effect
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
.vignette { | |
opacity: 0.55; | |
filter: alpha(opacity = 55); | |
-o-transition: opacity 0.30s linear; | |
-moz-transition: opacity 0.30s linear; | |
-webkit-transition: opacity 0.30s linear; | |
transition: opacity 0.30s linear; | |
} | |
.vignette:hover { | |
-o-transition: opacity 0.30s linear; | |
-moz-transition: opacity 0.30s linear; | |
-webkit-transition: opacity 0.30s linear; | |
transition: opacity 0.30s linear; | |
opacity: 1.0; | |
filter: alpha(opacity = 100); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment