JSFiddle - React, Tailwind, and code Playground

by Kaiyuan Xie

HTML

<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>

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;
    font-size: 12px;
}
.box:hover .text {
	top: 0px;
}