![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
28/05/2015, 09:40
|
![Avatar de baldaweb](http://static.forosdelweb.com/customavatars/avatar369625_1.gif) | | | Fecha de Ingreso: septiembre-2010 Ubicación: Barco pirata
Mensajes: 244
Antigüedad: 14 años, 4 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%");
} |