-
-
Save odowd/4434491 to your computer and use it in GitHub Desktop.
Animated HTML5 / CSS3 image caption - Example 5
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
/** | |
* Animated HTML5 / CSS3 image caption - Example 5 | |
*/ | |
/* page styles */ | |
body{ | |
background: #fff; | |
min-height:100%; | |
} | |
p { | |
width: 300px; | |
margin: 0 auto; | |
text-align: center; | |
font-family: "Helvetica Neue UltraLight", 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; | |
text-align: center; | |
color: rgba(255,255,255,1); | |
/* background-color: rgba(50,27,3,0.8); | |
border: 4px solid rgba(122,92,37,0.8); */ | |
display: block; | |
width: 700px; | |
line-height: 50px; | |
position: absolute; | |
top: 75px; | |
left: 50px; | |
white-space: nowrap; | |
font-size: 20px; | |
opacity: 0; | |
/* box-shadow: #fff8cf 0 0 15px; */ | |
transform: scale(4,1); | |
transition: all .5s; | |
} | |
figure:hover figcaption { | |
opacity: 1; | |
left: -250px; | |
transform: scale(1,1); | |
} | |
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
<body> | |
<figure> | |
<img src="http://www.midwinter-dg.com/blog_demos/css3-animated-image-captions/dyrafjordur.png" width="200" height="200" alt="Dýrafjörður" /> | |
<figcaption>Dýrafjörður</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 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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment