Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/04/2012, 23:50
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

Hasta ahora investigando pude hacer algo parecido como esto, que esta el overlay transparente en naranja (en este caso) y cuando hago hover se ve la imagen, pero me gustaria saber como hacerlo al reves.
Gracias por todas las ayudas.


Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <meta charset=utf-8 />
  3. <title>CSS Image Tint</title>
  4. <!--[if IE]>
  5.  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  6. <![endif]-->
  7.  
  8.   .tint {
  9.     position: relative;
  10.     float: left;
  11.     width:75px;
  12.     height:75px;
  13.     margin-right: 20px;
  14.     margin-bottom: 20px;
  15.     cursor: pointer;
  16.     -webkit-box-shadow: rgba(0,0,0,.2) 3px 5px 5px;
  17.     -moz-box-shadow: rgba(0,0,0,.2) 3px 5px 5px;
  18.     box-shadow: rgba(0,0,0,.2) 3px 5px 5px;
  19.   }
  20.  
  21.   .tint:before {
  22.     content: "";
  23.     display: block;
  24.     position: absolute;
  25.     top: 0;
  26.     bottom: 0;
  27.     left: 0;
  28.     right: 0;
  29.     background: rgba(236, 126, 40, 0.6);
  30.     -moz-transition: all .3s linear;
  31.     -webkit-transition: all .3s linear;
  32.     -ms-transition: all .3s linear;
  33.     -o-transition: all .3s linear;
  34.     transition: all .3s linear;
  35.   }
  36.  
  37.   .tint:hover:before {
  38.     content: "";
  39.     background: none;
  40.   }
  41.  
  42.  
  43. </head>
  44.    
  45.  
  46.  
  47.   <div class="tint">
  48.       <img src="imagen.jpg" width="75" height="75" />
  49.   </div>
  50.  
  51.  
  52. </body>
  53. </html>