Ver Mensaje Individual
  #11 (permalink)  
Antiguo 28/05/2015, 10:28
Avatar de JuJoGuAl
JuJoGuAl
 
Fecha de Ingreso: julio-2009
Ubicación: Venezuela
Mensajes: 754
Antigüedad: 14 años, 9 meses
Puntos: 19
Respuesta: Fondo adaptado a móvil

Cita:
Iniciado por baldaweb Ver Mensaje
// Averiguar si pantalla es apaisada o no
ratio = 1;

if (jQuery(window).width()/jQuery(window).height() > ratio) {
$(tu-id).height("auto");
$(tu-id).width("100%");
} else {
$(tu-id).width("auto");
$(tu-id).height("100%");
}
Que logro con eso?