Roland Hieslmayr: DIV langsam verschwinden lassen und wieder herstellen

Beitrag lesen

Ich hab jetzt mal den Code hier:

wenn ich beim onClick event die id des Bildes angebe dann funktioniert das Ganze, gebe ich allerdings die id des <div> an, dann ist die Funktion nicht mehr gegeben. Was könnte da das Problem sein.

Danke Roland

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unbenanntes Dokument</title>

<script language="javascript" type="text/javascript">

function shiftOpacity(id, millisec) {
 //if an element is invisible, make it visible, else make it ivisible
 if(document.getElementById(id).style.opacity == 0) {
  opacity(id, 0, 100, millisec);
 } else {
  opacity(id, 100, 0, millisec);
 }
}

function opacity(id, opacStart, opacEnd, millisec) {
 //speed for each frame
 var speed = Math.round(millisec / 100);
 var timer = 0;

//determine the direction for the blending, if start and end are the same nothing happens
 if(opacStart > opacEnd) {
  for(i = opacStart; i >= opacEnd; i--) {
   setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
   timer++;
  }
 } else if(opacStart < opacEnd) {
  for(i = opacStart; i <= opacEnd; i++)
   {
   setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
   timer++;
  }
 }
}

function changeOpac(opacity, id) {
 var object = document.getElementById(id).style;
 object.opacity = (opacity / 100);
 object.MozOpacity = (opacity / 100);
 object.KhtmlOpacity = (opacity / 100);
 object.filter = "alpha(opacity=" + opacity + ")";
}

</script>
</head>
<body>
<div id="test"> <img id="test1" src="picture/01.jpg" /></div>

<div id="asdf" style="position:absolute; top:100px; left:100px"><a href="#" onclick="shiftOpacity('test', '1000')">show/hide</a> </div>

<body>
</body>
</html>