Mostrar digo.. aumentar el tamano de algo on hover
<html>
<head>
<title>Mostrar algo al pasar el cursor</title>
<style type="text/css">
#no {display: none;
transition:all 2s;
-webkit-transition:all 2s; }
div
{
width:100px;
height:100px;
background:red;
transition:height 2s;
-webkit-transition:height 2s; /* Safari */
}
div:hover
{
height:300px;
}
div:hover #no
{
display: block;
}
</style>
</head>
<body>
<div><p>Este texto esta</p><p id="no">Este texto no esta</p></div>
<p>Hover over the div element above, to see the transition effect.</p>
</body>
</html>