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.