Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/07/2010, 09:43
ecastaneda
 
Fecha de Ingreso: julio-2010
Mensajes: 14
Antigüedad: 14 años, 5 meses
Puntos: 1
Respuesta: Cambiar Fondo segun Resolucion

body
{
background-color: #FFFFFF;

color: #000000;
overflow-y: scroll;
}
body.bg1024x768{
background-image: url(images/GInuyasha1.jpg);
}
body.bg800x600{
background-image: url(images/GInuyasha2.jpg);
}

y en tu pagina has algo asi:

<html>
<head>
<title>
</title>
<script>
function(){
if (screen.width==1024)
document.body.className="bg1024x768";
else if (screen.width==800)
document.body.className="bg800x600";
}
</script>
</head>
<body>
</body>
</html>


eso haria que tu pagina lo hiciera automaticamente, espero y te sirva de algo