Hi!
Ich habe das jetzt mit einem Array probiert. Aber irgendwie funktioniert es nicht. Woran liegt es?
#################################################################
<html>
<head>
<title>Bild</title>
<link rel="STYLESHEET" type="text/css" href="css.css">
<script type="text/javascript">
var i = 0;
var a = new Array("Prozent20", "Prozent30", "Prozent40", "Prozent50", "Prozent60", "Prozent70", "Prozent80", "Prozent90", "Prozent100");
function Bild() {
for (var b = 0; b < a.length; ++b)
window.setInterval("Bildwechsel(i, a[b])", 1000);
i + 1;
a + 1;
}
Prozent20 = new Image();
Prozent20.src = "bild_copy20.png";
Prozent30 = new Image();
Prozent30.src = "bild_copy30.png";
Prozent40 = new Image();
Prozent40.src = "bild_copy40.png";
Prozent50 = new Image();
Prozent50.src = "bild_copy50.png";
Prozent60 = new Image();
Prozent60.src = "bild_copy60.png";
Prozent70 = new Image();
Prozent70.src = "bild_copy70.png";
Prozent80 = new Image();
Prozent80.src = "bild_copy80.png";
Prozent90 = new Image();
Prozent90.src = "bild_copy90.png";
Prozent100 = new Image();
Prozent100.src = "bild_copy.png";
function Bildwechsel (Bildnr, Bildobjekt) {
window.document.images[Bildnr].src = Bildobjekt.src;
}
</script>
</head>
<body>
<div id="bild">
<img src="bild_copy10.png" alt="" width="1000" height="125" border="0">
</div>
</body>
</html>
##################################################################
Vielen Dank für deine Hilfe!
Greetz Tobi