hi Standbye,
Vorschlag:
Erstelle eine Frameseite ( index.htm )
<frameset framespacing="0" border="0" rows="350,*" frameborder="0">
<frame name="bild" src="bild.htm" marginwidth="0" marginheight="0" scrolling="no" noresize>
<frame name="text" src="holger.htm" marginwidth="0" marginheight="0" scrolling="no" noresize>
</frameset>
Inhalt von bild.htm
Die Bilder heißen freund0.gif, freund1.gif ...
<html>
<head>
<script language="JavaScript" type="text/javascript">
<!--
var anzahl = 0;
function animation() {
if (++anzahl > 3) anzahl = 0;
document.images[0].src = 'freund' + anzahl + '.gif';
if (anzahl == 0) parent.text.location.href = 'holger.htm';
if (anzahl == 1) parent.text.location.href = 'hilmar.htm';
if (anzahl == 2) parent.text.location.href = 'heiner.htm';
if (anzahl == 3) parent.text.location.href = 'hans.htm';
setTimeout('animation()',10000);
}
setTimeout('animation()',10000);
//-->
</script>
</head>
<body bgcolor="#000000">
<div align="center">
<table border="0" cellspacing="0" cellpadding="0" height="100%">
<tr>
<td><img name="meine_freunde" src="freund0.gif" border="0" width="400" height="300"></td>
</tr>
</table>
</div>
</body>
</html>
Nun erstelle noch für jeden Namen eine Seite in die du den
Text schreibst der zu dem jeweiligen Bild gehört.
z.B. holger.htm, hilmar.htm, heiner.htm, hans.htm
Hab leider keine bessere Lösung.
gruss
René
[Edited by René on 25-09-2000 at 13:30]