20/03/2011, 13:29
|
| | Fecha de Ingreso: marzo-2011
Mensajes: 2
Antigüedad: 13 años, 8 meses Puntos: 0 | |
script funciona en IE pero no en Firefox Hola a todos, tengo un script que funciona bien en IE 8 pero en Firefox 3.6 no hace nada, lo que el script hace es mostrar un menú desplegable, al hacer onmouseover se manda llamar la funcion "showmenu()" y onmouseout "hidemenu()", ojalá me puedan ayudar, de antemano gracias. éste es el script:
var i=-145;
var intHide;
var speed=20;
function showmenu()
{
clearInterval(intHide);
intShow=setInterval("show()",30);
}
function hidemenu()
{
clearInterval(intShow);
intHide=setInterval("hide()",10);
}
function show()
{
if (i<-12)
{
i=i+speed;
document.getElementById('myMenu').style.top=i;
}
}
function hide()
{
if (i>-145)
{
i=i-speed;
document.getElementById('myMenu').style.top=i;
}
} |