Ver Mensaje Individual
  #20 (permalink)  
Antiguo 01/11/2010, 11:10
lipob
 
Fecha de Ingreso: octubre-2010
Mensajes: 11
Antigüedad: 14 años
Puntos: 0
Respuesta: Cambiar Fondo segun Resolucion

Mira Nemutagk, este es el html, las imágenes están en el mismo directorio que el archivo.

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Black Box Bar</title>
  5.  
  6. <link href="blackBoxStyle.css" rel="stylesheet" type="text/css" />
  7.  
  8. <script language="javascript" type="text/javascript">
  9.  
  10. function changeBackground() {
  11.  
  12. var fondos = {
  13. '1024':'bg_body1024.jpg',
  14. '1280':'bg_body1280.jpg',
  15. '1440':'bg_body1440.jpg',
  16. 'default':'bg_body1920.jpg'
  17. }
  18.  
  19.  
  20. var ancho = screen.width;
  21.  
  22.  
  23.  
  24. if (parseInt(ancho) >= parseInt(1024) && parseInt(ancho) <= parseInt(1440)) {
  25.  
  26. document.body.style.backgroundImage= "url("+ fondos[ancho] +");";
  27. } else {
  28.  
  29.  
  30. document.body.style.backgroundImage= "url("+ fondos['default'] +");";
  31. }
  32. }
  33.  
  34.  
  35. </head>
  36.  
  37. <body id="index" onload="javascript:changeBackground()">
  38.  
  39. <div id="wrapper">
  40.  
  41.   <div id="header">
  42.    
  43.     <div class="logo">
  44.     <h1><a href="index.html"><img src="imagenes/logoBlack.png" alt="Black Box Bar" width="364px" height="40px" /></a></h1>
  45.     </div> <!-- end of logo -->
  46.    
  47.     <div class="headerRidht">
  48.     </div> <!-- end of headerRight -->
  49.    
  50.     <div class="menu">
  51.    
  52.         <ul>
  53.             <li class="btnTragos"><a href="tragos.html">tragos</a></li>
  54.             <li class="btnPlatos"><a href="platos.html">platos</a></li>
  55.             <li class="btnDiversion"><a href="diversion.html">diversión</a></li>
  56.             <li class="btnEspacios"><a href="espacios.html">espacios</a></li>
  57.             <li class="btnBaila"><a href="baila.html">bailá!</a></li>
  58.             <li class="btnCultura"><a href="cultura.html">cultura</a></li>
  59.             <li class="btnContacto"><a href="contacto.html">contacto</a></li>
  60.         </ul>
  61.    
  62.     </div> <!-- end of menu -->  
  63.  
  64.  
  65.   </div> <!-- end of header -->
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.   <div id="content">    </div> <!-- end of content -->
  73.   <div id="footer"> </div> <!-- end of footer -->
  74.  
  75. </div> <!-- end of wrapper -->
  76. </body>
  77. </html>

Algo que no me termina de cerrar es el Array, si también tienes ganas de explicarmelo en detalle, adelante! Estoy iniciándome en javascript, cualquier ayuda es importante (Y)