Hola, hay un script q me permite cambiar un texto cada ciertos segundos haciendo el efecto fade, pero solo funciona el fade si el fondo es blanco, si es negro no va. Alguien podria ayudarme a ver q es lo q hago mal? o si conoce otro similar q si permite.... GRACIAS!!
Este es el script:
//comienza
<body>
<script language="JavaScript1.2">
var delay=3000 //pausa (en milisegundos)
var fcontent=new Array()
begintag='<font face="Arial" size=2>' //tag que abre los mensajes
fcontent[0]="<strong><b>Ejemplo...</b><br><br>Crear un sitio web es relativamente fácil. Lo dificil es darle un buen contenido, diseño y enfoque.</strong>"
fcontent[1]="<strong>El tener en un mismo sitio, mas de 3 paginas de informacion, cansa al visitante y lo hace dejar el sitio.</strong>"
fcontent[2]="<strong>Una de las causas por las que el visitante regresa a un sitio frecuentemente es porque bla, bla, bla.</strong>"
closetag='</font>'
var fwidth=150 //ancho
var fheight=150 //alto
///No editar/////////////////
var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0
if (DOM2)
faderdelay=2000
// Function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color=" rgb(250,250,250)"
document.getElementById("fscroller").innerHTML=beg intag+fcontent[index]+closetag
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.docu ment.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.docu ment.close()
}
index++
setTimeout("changecontent()",delay+faderdelay)
}
// colorfade() partially by Marcio Galli for Netscape Communications. ////////////
frame=20;
hex=255 // Initial color value.
function colorfade() {
// 20 frames fading process
if(frame>0) {
hex-=12; // increase color value
document.getElementById("fscroller").style.color=" CCCCCC"; // Set color value. Para q funcione fade color="rgb("+250+","+hex+","+hex+")
frame--;
setTimeout("colorfade()",100); // Velocidad fade
}
else{
document.getElementById("fscroller").style.color=" CCCCCC"; // Color final
frame=20;
hex=255
}
}
if (ie4||DOM2)
document.write('<div id="fscroller" align="left" style="width:'+333+';height:'+200+'; position:absolute; z-index:1; left:333px; top:300px; padding:2px"></div>')
window.onload=changecontent
</script>
</body>
// Termina