Created
December 16, 2011 16:44
-
-
Save dgmid/1486803 to your computer and use it in GitHub Desktop.
Animated HTML5 / CSS3 image caption - Example 2
This file contains 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
/** | |
* Animated HTML5 / CSS3 image caption - Example 2 | |
*/ | |
/* page styles */ | |
body{ | |
background: #fff; | |
min-height:100%; | |
} | |
p { | |
width: 300px; | |
margin: 0 auto; | |
text-align: center; | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
} | |
a:link, a:visited { | |
color: #999; | |
text-decoration: none; | |
} | |
a:hover, a:active { | |
color: #0080ff; | |
} | |
/* image caption styles */ | |
figure { | |
margin: 100px auto; | |
width: 200px; | |
height: 200px; | |
overflow: hidden; | |
position: relative; | |
} | |
figcaption { | |
position: absolute; display: block; | |
width: 200px; | |
left: 0; | |
top: 0; | |
text-align: center; | |
color: #fff; | |
text-shadow: 0 0 3px #63fdfe, 0 0 8px #fff; | |
line-height: 200px; | |
font-weight: bold; | |
font-size: 20px; | |
opacity: 0; | |
background-image: url(http://www.midwinter-dg.com/blog_demos/css3-animated-image-captions/zoom.png); | |
transition: opacity .5s; | |
} | |
figure:hover figcaption { | |
opacity: 1; | |
} | |
This file contains 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
<body> | |
<figure> | |
<img src="http://www.midwinter-dg.com/blog_demos/css3-animated-image-captions/jokulsarlon.png" width="200" height="200" alt="Jökulsárlón" /> | |
<figcaption>Jökulsárlón</figcaption> | |
</figure> | |
<p>you can find more examples here:<br /> | |
<a href="http://www.midwinter-dg.com/blog_demos/css3-animated-image-captions/" target="_blank">css3 animated image captions</a></p> | |
</body> |
This file contains 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
{"view":"split-vertical","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment