timestamp
Mitglied Käsekuchen
Hi
ich hab jetzt mal eine StoppFunktion mit eingebaut
ich hab jetzt mal eine StoppFunktion mit eingebaut
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Tutorials.de</title>
<script type="text/javascript">
var stop = false;
function fadeIn(id, opacity){
if( stop ){
stop = false;
return;
}
obj = document.getElementById(id);
if( obj ){
if( obj.style.opacity == 1 ){
return;
}
opac = opacity+0.05;
obj.style.opacity = opac;
setTimeout("fadeIn('"+id+"', "+opac+")", 80);
}
}
function fadeOut(id, opacity){
if( stop ){
stop = false;
return;
}
obj = document.getElementById(id);
if( obj ){
if( obj.style.opacity == 0 ){
return;
}
opac = opacity-0.05;
obj.style.opacity = opac;
setTimeout("fadeOut('"+id+"', "+opac+")", 40);
}
}
function stopFading(){
stop = true;
}
</script>
</head>
<body>
<a href="#" style="display:inline;" onmouseover="fadeIn('fadein', 0);" onmouseout="stopFading();">Rein</a> <a href="#" style="display:inline;" onmouseover="fadeOut('fadein', 1);" onmouseout="stopFading();">Raus</a>
<div id="fadein" style="background-color: #f00;opacity: 1;">Hallo Welt!</div>
</body>
</html>