Hallo, ich möchte von einem Bild auf ein zweites und von da auf ein drittes überblenden. Von Bild 1 auf 2 habe ich geschafft, Code anbei.
Kann mir jemand bitte sagen wie ich das 3. noch hinzufüge?
Kann mir jemand bitte sagen wie ich das 3. noch hinzufüge?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>Test</title>
<script type="text/javascript">
function fade(step) {
var imgs = document.getElementsByTagName("img");
step = step || 0;
imgs[1].style.opacity = step/100;
imgs[1].style.filter = "alpha(opacity=" + step + ")"; // IE
step = step + 2;
if (step <= 100) {
window.setTimeout(function () { fade(step); }, 1);
}
}
</script>
</head>
<body>
<p style="position: relative;"> <img src="kopf1.bmp" alt=""> <img
src="kopf2.bmp" alt=""
style="position: absolute; left: 0pt; top: 0pt; opacity: 0;"> </p>
<script>
window.setTimeout("fade()",1000);
</script>
</body>
</html>