meta_tag
06-29-2004, 08:13 AM
Hi,
I am new to javascript so take it easy on me and explain whats going on here if you can. Basically its a roll over on mouse on i want it to fade in a layer. the two roll overs are on seperate layers. My code works fine if it is only fading in but when I add additional code to fade out on mouse out. It doesnt work right.
This is my code:
ie5 = (document.all && document.getElementById);
ns6 = (!document.all && document.getElementById);
var opac = 0;
var opac2 = 100;
function fadeIn() {
document.test.style.visibility = "visible";
if(opac != 100){
opac+=15;
if(ie5) document.getElementById('test').filters.alpha.opacity = opac;
if(ns6) document.getElementById('test').style.MozOpacity = opac/100;
setTimeout('fadeIn()', 79);
}
}
function fadeOut() {
if(opac2 > 0){
opac2-=1;
if(ie5) document.getElementById('test').filters.alpha.opacity = opac2;
if(ns6) document.getElementById('test').style.MozOpacity = opac2/100;
setTimeout('fadeOut()', 50);
}
}
I am new to this and I am trying to learn, any help would be great.
Thanks
meta_tag
I am new to javascript so take it easy on me and explain whats going on here if you can. Basically its a roll over on mouse on i want it to fade in a layer. the two roll overs are on seperate layers. My code works fine if it is only fading in but when I add additional code to fade out on mouse out. It doesnt work right.
This is my code:
ie5 = (document.all && document.getElementById);
ns6 = (!document.all && document.getElementById);
var opac = 0;
var opac2 = 100;
function fadeIn() {
document.test.style.visibility = "visible";
if(opac != 100){
opac+=15;
if(ie5) document.getElementById('test').filters.alpha.opacity = opac;
if(ns6) document.getElementById('test').style.MozOpacity = opac/100;
setTimeout('fadeIn()', 79);
}
}
function fadeOut() {
if(opac2 > 0){
opac2-=1;
if(ie5) document.getElementById('test').filters.alpha.opacity = opac2;
if(ns6) document.getElementById('test').style.MozOpacity = opac2/100;
setTimeout('fadeOut()', 50);
}
}
I am new to this and I am trying to learn, any help would be great.
Thanks
meta_tag