Hi!
Ich habe es jetzt soweit, dass das erste Bild durch das zweite ersetzt wird. Aber weiter macht es nicht. Wie schaffe ich es, dass in dieser Zeile
var aktiv = window.setInterval("Bildwechsel(0, Prozent20)", 1000);
der Parameter "Bildnr" jedesmal um eins erhöht wird? Und der Parameter "Bildobjekt" sollte auch verändert werden. Wie kann ich das machen?
Hier ist mein Quelltext:
################################################################
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Bild</title>
<link rel="STYLESHEET" type="text/css" href="css.css">
<script type="text/javascript">
var aktiv = window.setInterval("Bildwechsel(0, Prozent20)", 1000);
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 jede Hilfe!
greetz Tobi