Skip to content

Instantly share code, notes, and snippets.

@lmccart
Created November 14, 2014 19:28
Show Gist options
  • Save lmccart/0b0cae39eca98f06d63b to your computer and use it in GitHub Desktop.
Save lmccart/0b0cae39eca98f06d63b to your computer and use it in GitHub Desktop.
overlays
<html>
<head>
<style>
#pic {
width: 200;
height: 200;
position: absolute;
}
#overlay {
opacity: 0;
width: 200;
height: 200;
position: relative;
}
#overlay:hover {
opacity: 1.0;
}
#rect {
background:black;
opacity: 0.5;
width: 200;
height: 200;
position: absolute;
opacity: 0.5;
}
#text {
position: absolute;
}
</style>
</head>
<body>
<img id="pic" src="images/cookies.jpg"/>
<a href="http://google.com">
<div id="overlay">
<div id="rect"></div>
<p id="text">hihihih</p>
</div>
</a>
<script type='text/javascript'>
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment