28/05/2015, 09:40
|
| | | Fecha de Ingreso: septiembre-2010 Ubicación: Barco pirata
Mensajes: 244
Antigüedad: 14 años, 2 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%");
} |