Quickbar - Optionen
Kay Büchmann
- javascript
Hallo Forumler,
ist es möglich, die Quickbar (geniale und schnell ladende Lösung) farbig an die Umgebung anzupassen ?
Welche Möglichkeiten habe ich den folgenden Code etwas ansprechender zu gestalten ?
------Schnipp-------
<script language="JavaScript">
<!--
function Go(x)
{
if(x == "nothing")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else if(x == "infos_unten.html")
{
parent.frames[2].location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
else if(x == "end") top.location.href = parent.frames[2].location;
else
{
parent.frames[1].location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
//-->
</script>
</head>
<CENTER><TABLE WIDTH=560>
<TR><!-- Row 1 -->
<TD ALIGN="left" VALIGN="top">
<form name="MetaForm"><select size=1 name="MetaAusw" onChange="Go(this.form.MetaAusw.options[this.form.MetaAusw.options.selectedIndex].value)" class="qbar" style="width:150px;" width=150>
<option value="nothing">[ Deine Auswahl ]
<option value="nothing">----------------------------------
<option value="start.html">Zurück zum Start
<option value="news.html">Neues aus der Szene
<option value="recht.html">Weitere Infos
<option value="urlaub.html">Fluggebiete
<option value="neuling.html">Links
<option value="download.html">Termine & Events
<option value="tests.html">Aktuelle Testberichte
<option value="verloren.html">Verloren & Gestohlen ?
</select>
</form>
------Schnapp-------
Danke für Eure konstruktiven Ideen !
Kay
Nur mit Stylesheets!
Du musst folgendes in den <HEAD>-</HEAD>-Teil deiner Seite folgendes hinzufügen:
<STYLE TYPE="text/css">
<!--
OPTION { background-color:#808080;
color:#000000;
...
und die restlichen Angaben
...; }
//-->
</STYLE>
zum Thema StyleSheets besuche in SelfHTML diese Seite: <../../td.htm>
MfG Florian Auer