Ver Mensaje Individual
  #8 (permalink)  
Antiguo 01/05/2012, 02:39
Avatar de demoche
demoche
 
Fecha de Ingreso: junio-2006
Mensajes: 124
Antigüedad: 18 años, 4 meses
Puntos: 0
Respuesta: Imagen con overlay rollover

Muchas Gracias Sergio ahora funciona PERFECTO!

Le agrege efecto de transición también.

Código CSS:
Ver original
  1. .caption{
  2.     position:absolute;
  3.     top:0;
  4.     left:0;
  5.     width:400px;
  6.     height:351px;
  7.     cursor: pointer;
  8.     background: rgba(236, 126, 40, 0.6);
  9.     -moz-transition: all .3s linear;
  10.     -webkit-transition: all .3s linear;
  11.     -ms-transition: all .3s linear;
  12.     -o-transition: all .3s linear;
  13.     transition: all .3s linear;
  14.  
  15. }

Abrazos