Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/05/2012, 16:37
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses
Puntos: 1567
Respuesta: Cambiar el Background de mi web

Algunas alternativas

Para cambiar segun hora del dia
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript">
  7. //<![CDATA[
  8. function banner() {
  9. var hoy = new Date();
  10. var hora = hoy.getHours();
  11. var banner_logo = document.getElementById('banner');
  12. if((hora >= 7)&&(hora <= 14)) { // 7,8,9,10,11,12,13,14
  13. banner_logo.src = 'sfondo03.jpg';
  14. }
  15. if((hora >= 15)&&(hora <= 22)) { // 15,16,17,18,19,20,21,22
  16. banner_logo.src = 'sfondo07.jpg';
  17. }
  18. if((hora >= 23)||(hora < 7)){ // 23,0,1,2,3,4,5,6
  19. banner_logo.src = 'sfondo06.jpg';
  20. }
  21. }
  22. //]]>
  23. </head>
  24. <body onload="banner();">
  25. <img src="sfondo03.jpg" id="banner" alt="" />  
  26. </body>
  27. </html>

Otra rotación
http://www.forosdelweb.com/f13/web-c...2/#post4176322

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.