Created
November 14, 2014 19:28
-
-
Save lmccart/0b0cae39eca98f06d63b to your computer and use it in GitHub Desktop.
overlays
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
<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