Ver Mensaje Individual
  #10 (permalink)  
Antiguo 28/05/2015, 09:40
Avatar de baldaweb
baldaweb
 
Fecha de Ingreso: septiembre-2010
Ubicación: Barco pirata
Mensajes: 244
Antigüedad: 13 años, 7 meses
Puntos: 20
Respuesta: Fondo adaptado a móvil

// 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%");
}