Hallo Zusammen
Ich habe null Kentnisse von Html und co. Und doch habe ich eine simple Page auf go live gebastelt. Nun möchte ich beim index bei jedem neuen Besucher ein anderes Bild darstellen. Dieses Script habe ich gefunden und nun möchte ich wissen wie ich das in meine Index datei einbinden muss... Ich bin sehr froh um eure Hilfe
Quelltext meines indexes:http://www.avoon.ch
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" />
<meta name="generator" content="Adobe GoLive" />
<title>index</title>
<link href="css/basic.css" rel="stylesheet" type="text/css" media="all" />
<style type="text/css" media="screen"><!--
.colcont_C236658F { width: 100%; height:600px }
.colboxleft_C236658F { width:100px; height:600px; float:left }
.colboxright_C236658F { width:100px; height:600px; float:right }
.colboxmiddle_C236658F { width:auto; height:600px; margin-left:100px; margin-right:100px }
--></style>
</head>
<body>
<div class="colcont_C236658F">
<div class="colboxleft_C236658F"></div>
<div class="colboxright_C236658F">
</p>
</div>
<div class="colboxmiddle_C236658F">
<div align="left">
<div style="position:relative;width:800px;height:600px;-adbe-g:p;">
<div style="position:absolute;top:64px;left:96px;width:600px;height:333px;">
</div>
<div style="position:absolute;top:415px;left:333px;width:112px;height:32px;-adbe-c:c">
<div align="center">
shit happens</div>
</div>
</div>
</div>
Und hier das script für den Bildwechsel:
<html>
<body>
<img name="randomImage">
</body>
<script type="text/javascript" language="JavaScript">
var myImages = new Array();
myImages[myImages.length] = "myImage1.gif";
myImages[myImages.length] = "myImage2.gif";
myImages[myImages.length] = "myImage3.gif";
myImages[myImages.length] = "myImage4.gif";
myImages[myImages.length] = "myImage5.gif";
var rand = Math.floor(Math.round()*myImages.length);
document.images['randomImage'].src = myImages[rand];
</script>
</html>