Skip to content

Instantly share code, notes, and snippets.

Created April 18, 2012 12:28
Show Gist options
  • Save anonymous/2413276 to your computer and use it in GitHub Desktop.
Save anonymous/2413276 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.teaser {
overflow: hidden;
height: 250px;
display: inline-block;
position: relative;
}
.teaser .text {
position: absolute;
top: 0;
xwidth: 100%;
height: 250px;
margin-top: 200px;
background: grey;
transition: margin 0.5s;
}
.teaser:focus .text,
.teaser:hover .text {
margin-top: 0;
}
<div class="teaser" tabindex="-1">
<img src="http://placehold.it/200x200">
<div class="text">
Hello World
</div>
</div>
<div class="teaser" tabindex="-1">
<img src="http://placehold.it/200x200">
<div class="text">
Hello World
</div>
</div>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment