22/04/2009, 09:14
|
| | Fecha de Ingreso: diciembre-2007
Mensajes: 121
Antigüedad: 17 años, 1 mes Puntos: 0 | |
Respuesta: Cancelar eventos anteriores Hola de nuevo, tengo estas funciones:
function hola(){
a=document.getElementById("capa_carga").style.visi bility="visible";
}
function mostrar(){
setTimeout("hola()",2000);
}
function colortexto(){
a=document.getElementById("capa_carga").style.colo r="black";
}
function texto(){
a=document.getElementById("capa_carga").style.colo r="green";
}
function parpadear(){
a=document.getElementById("capa_carga").style.colo r="white";
with (document.getElementById("capa_carga").style)
visibility = (visibility == "visible") ? "hidden" : "visible";
return false;
}
function parpadeo(){
setInterval("parpadear()", 700);
}
function ventana(){
ventana=window.open("http://.........","ventana","width=1000,height=800,scroll bars=NO");
}
Cuando cambio de parpadeo a texto se tiene que quedar la capa quieta y de color verde, sim embargo no hace nada, q tengo mal?? Gracias |