Skip to content

Instantly share code, notes, and snippets.

@sforsparky
Created December 30, 2015 20:32
Show Gist options
  • Save sforsparky/1cfcb361e49cacb9613c to your computer and use it in GitHub Desktop.
Save sforsparky/1cfcb361e49cacb9613c to your computer and use it in GitHub Desktop.
// 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