Skip to content

Instantly share code, notes, and snippets.

@jrdn91
Created July 31, 2013 20:17
Show Gist options
  • Save jrdn91/6125764 to your computer and use it in GitHub Desktop.
Save jrdn91/6125764 to your computer and use it in GitHub Desktop.
HTML/CSS: Rollover Solution
<!-- HTML -->
<div><img src="" class="rollover"/></div>
<div></div>
<!-- CSS -->
.rollover {
position: absolute;
opacity: 0;
-webkit-transition: opacity 500ms ease;
-moz-transition: opacity 500ms ease;
-ms-transition: opacity 500ms ease;
-o-transition: opacity 500ms ease;
transition: opacity 500ms ease;
}
.rollover:hover {
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment