Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/12/2004, 09:07
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 3 meses
Puntos: 772
Hola adancer

Cambia esta parte del código de fgil2:

// colorfade() partially by Marcio Galli for Netscape Communications. ////////////
frame=20;
hex=0,0,0 // Initial color value.
function colorfade() {
// 20 frames fading process
if(frame>0) {
hex+=10; // increase color value
document.getElementById("fscroller").style.color=" rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("colorfade()",100);
}
else{
document.getElementById("fscroller").style.color=" rgb(192,192,192)";
frame=20;
hex=0

Espero que te funcione. Saludos,