Thilo: Bildwechsler

Beitrag lesen

Hallo!

Hier ist ei Script! Du mußt es jedoch noch Deinem Seiten-Layout anpassen!

<html>
<head>
<title></title>
<script language="JavaScript">
<!--
function mouseOver()
{
self.document.images["bild"].src = "buch4.gif"; /* Bild welches angezeigt wird, wenn man über den Link fährt */
}
function mouseOut()
{
self.document.images["bild"].src = "buch1.gif"; /* Das normale Bild, was sonst angezeigt wird */
}
//-->
</script>
</head>
<body>
<img name="bild" src="buch1.gif" onMouseOver="mouseOver()" onMouseOut="mouseOut()">
<!--
<img name="bild" src="buch1.gif" onMouseOver="mouseOver()" onMouseOut="mouseOut()">
                         "
      Das normale Bild, was sonst angezeigt wird
//-->
</body>
</html>

Ode Online unter: http://www.geocities.com/thmod_de/exe/exe1.html

Viel spaß beim anpassen,

Thilo