将鼠标悬停在 DIV 上时是否可以显示内容。看图片
当我将鼠标悬停在 div 上时,会发生过渡,但是是否可以在悬停的 div 内显示内容,即。图片等
html:
<div class="flowingdown">
</div>
CSS3:
.flowingdown {
width:1045px;
background-image:url(images/vertical_cloth.png);
height:50px;
float:left;
margin-top:2px;
margin-bottom:2px;
border-radius:0 0 55px 55px ;
transition: height 1s;
-webkit-transition: height 1s;
}
.flowingdown:hover {
height:100px;
}