![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
28/05/2015, 10:28
|
![Avatar de JuJoGuAl](http://static.forosdelweb.com/customavatars/avatar314860_1.gif) | | | Fecha de Ingreso: julio-2009 Ubicación: Venezuela
Mensajes: 754
Antigüedad: 15 años, 6 meses Puntos: 19 | |
Respuesta: Fondo adaptado a móvil Cita:
Iniciado por baldaweb // 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? |