hi, ich arbeite grad an meiner ersten page un wollt ne dynamische Navigationsleiste basteln. Also mit mouseover und mouseout bei den buttons. Dazu hab ich versucht den Quellcode von selfhtml in meinen einzubauen, nur leider funktioniert da irgendwas nicht richtig.
Bitte helft mir...
HTML
<html>
<head>
<title>navi</title>
<script type="text/javascript">
Normal1 = new Image();
Normal1.src = "coollogo_com_news.gif"
Highlight1 = new Image();
Highlight1.src = "coollogo_com_news1.gif"
Normal2 = new image();
Normal2.src = "coollogo_com_bilder.gif"
Highlight2 = new Image();
Highlight2.src = "coollogo_com_bilder1.gif"
Normal3 = new Image();
Normal3.src = "coollogo_com_forum.gif"
Highlight3 = new Image();
Highlight3.src = "coollogo_com_forum1.gif
function Bildwechsel (Bildnr, Bildobjekt) {
window.document.images[Bildnr].src = Bildobjekt.src;
}
</script>
</head>
<body bgcolor="#BDC6DE" text="#000000" link="#804080" vlink="#603060" alink="#804080">
<table border="0" height="20" width="100%" span="3">
<th><a href="start.html" target="start"
onmouseover="Bildwechsel(0, highlight1)" onmouseout="Bildwechsel(0, Normal1)">
[img]coollogo_com_news.gif[/img]</a></th>
<th><a href="test.html" target="start"
onmouseover="Bildwechsel(1, highlight2)" onmouseout="Bildwechsel(1, Normal2)">
[img]coollogo_com_bilder.gif[/img]</a></th>
<th><a href="http://www.foren.de/system/index.php?id=niggli" target="_blank"
onmouseover="Bildwechsel(2, highlight3)" onmouseout="Bildwechsel(2, Normal3)">
[img]coollogo_com_forum.gif[/img]</a></th>
</table>
</body>
</html>
Alles anzeigen