Created
December 30, 2015 20:32
-
-
Save sforsparky/1cfcb361e49cacb9613c to your computer and use it in GitHub Desktop.
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
// Sets container background to black | |
.thumbnail .thumb_image { | |
background-color: black; | |
} | |
// Sets the 'mouseout' transition speed | |
.thumb_image { | |
transition: opacity 0.25s ease-out; | |
} | |
// Sets the 'mousein' transition attribute and speed | |
// You can play with opacity to your liking (Scale from 0 - 1) | |
.thumb_image img:hover { | |
transition: opacity 0.25s ease-out; | |
opacity: 0.8; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment