Skip to content

Instantly share code, notes, and snippets.

@Kaiyuan
Last active October 6, 2015 20:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Kaiyuan/3051472 to your computer and use it in GitHub Desktop.
Save Kaiyuan/3051472 to your computer and use it in GitHub Desktop.
Hover-Box
<div class="box">
<img class="image" src="http://ww1.sinaimg.cn/large/620eff41gw1e62qpb18kyj20sg0sgadc.jpg" alt="">
<div class="text">
<h2>title</h2>
<p>This's Photo.</p>
</div>
</div>
<style type="text/css">
.box {
width: 100px;
height: 100px;
position: relative;
overflow: hidden;
line-height: 100px;
text-align: center;
}
.box img {
max-width: 100px;
max-height: 100px;
}
.text {
position: absolute;
transition: all .3s;
-webkit-transition: all .3s;
-moz-transition: all .3s;
width: 100px;
top: 100px;
min-height: 100px;
background-color: rgba(0,0,0,0.65);
line-height: 24px;
color: #fff;
}
.box:hover .text {
top: 0px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment