Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/09/2011, 10:10
Avatar de ThunderWolf
ThunderWolf
 
Fecha de Ingreso: julio-2011
Mensajes: 30
Antigüedad: 12 años, 9 meses
Puntos: 1
Respuesta: Lightbox + Backgrpund Resize

Esta clase CSS logra exactamente el mismo efecto con el background:

Código CSS:
Ver original
  1. html {
  2.  
  3.     margin: 0;
  4.     padding: 0;
  5.     background: url(http://www.mi_fondo.es/este.jpg) no-repeat center center fixed;
  6.             -webkit-background-size: cover;
  7.             -moz-background-size: cover;
  8.             -o-background-size: cover;
  9.             background-size: cover;
  10. }