Tema: setTimeout
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/02/2007, 05:55
wigglyUtrera
 
Fecha de Ingreso: enero-2007
Mensajes: 405
Antigüedad: 18 años
Puntos: 3
setTimeout

Hola, tengo el siguiente codigo:

Código PHP:
var fondo document.getElementById("contenido_cabecera");
                
fondo.style.backgroundImage "url('img/prueba/c_01.gif')";
                
setTimeout(function (){
                
fondo.style.backgroundImage "url('img/prueba/c_02.gif')";
                },
90);
                
setTimeout(function (){
                
fondo.style.backgroundImage "url('img/prueba/c_03.gif')";
                },
190);
                
setTimeout(function (){
                
fondo.style.backgroundImage "url('img/prueba/c_04.gif')";
                },
270);
                
setTimeout(function (){
                
fondo.style.backgroundImage "url('img/prueba/c_05.gif')";
                },
360);
                
setTimeout(function (){
                
fondo.style.backgroundImage "url('img/prueba/c_06.gif')";
                },
450);
                
setTimeout(function (){
                
fondo.style.backgroundImage "url('img/prueba/c_07.gif')";
                },
540);
                
setTimeout(function (){
                
fondo.style.backgroundImage "url('img/prueba/c_08.gif')";
                },
630); 
En el servidor web apache me funciona bien, pero al subirlo a un servidor gratuito solo me carga la ultima imagen.

Alguna idea?


Gracias.