Struppi: Schleife mit set timeout

Beitrag lesen

also meine html hat so ausgesehen:

So würde die funktion mit der Timer prototype aussehen:

function fade (id, actOpac, endOpac, step) {  
 var obj = document.getElementById(id);  
 var o = actOpac;  
 function opacity () {  
  o += (actOpac > endOpac) ? -step : step;  
  if(typeof obj.style.filter != 'undefined')  
  obj.style.filter = 'alpha(opacity=' + o  + ')';  
  else if( typeof obj.style.opacity != 'undefined')  
  obj.style.opacity = o / 100;  
  return !(Math.abs(endOpac - o) < step);  
 };  
  
 opacity.Timer(20, 100);  
}  

Struppi.