• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Ausklapbare Navigationsleiste

Status
Für weitere Antworten geschlossen.

schoene9

Neues Mitglied
Hi
Ich ahbe versucht eine ausklapbare Navi zu machen doch beim code muss mir irgendwo ein fehler unterlaufen sein den ich aber nicht finde.
Kann mir jemand helfen...?

PHP:
<!DOCTYPE html PUBLIC "-//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" />
<title>Unbenanntes Dokument</title>
<script type="text/javascript">
var n4, ie, w3c;
function init() {
   n4 = document.layers;
   ie = document.all;
   w3c = document.documentElement;
{
function showNav() {
   if(ie)
   {
     document.all.naviBar.style.visibility = 'visible';
   }
   else if(w3c)
   {
     document.getElementById('naviBar').style.visibility = 'visible';
   }
   else
   {
     alert('Diese Seite ist mit ihrem Browser nicht kompatiebel');
   }
}
function hideNav() {
   if(ie)
   {
     document.all.naviBar.style.visibility = 'hidden';
   }
   else if(w3c)
   {
     document.getElementById('naviBar').style.visibility = 'hidden';
   }
   else
   {
     alert('Diese Seite ist mit ihrem Browser nicht kompatibel');
   }
}
</script>
<style type="text/css">
body         { margin-left:40ox; }
#leftBoarder { background-color:#336699; width:25px;
               height:100%; position:absolute;
      left:0px; top:0px; }
#naviBar     { background-color:#336699; widht 150px;
               hight:250px; position:absolute; left:0px;
      top:50px; padding:5px; visibility:hidden; }
a       { color:#FFFFFF; } 
</style>     
</head>

HTML:
<body background="http://rpelite.rp.ohost.de/images/background.png" onload="init()">
<div id="leftBorder" onMouseOver="showNav()"
     onMouseOut="hideNav()">
<a href="http://www.revolution-player.de.tt/">rP-Elite</a><br />
<a href="http://pk-elite.6x.to/">pK-Elite</a><br />
<a href="http://www.tidal-st0rm.6x.to/">Tidal Storm</a><br />
<a href="http://www.t7-elite.net/">T7</a><br />
<a href="http://www.skelite.de.gg/">$k-Elite</a><br />
</div>
</body>
</html>

Lg
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben