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