Mal eine Design-Technische Frage....
Ich hab folgendes Menü:
und dazu folgendes CSS:
so und wenn ich jetzt über die menüpunkte fahre ist zwischen dem wechsel von der nicht-hover-grafik zu der hover-grafik eine pause...also da zeigt er kurzzeitig mal gar kein bild an! woher kommt das?
Ich hab folgendes Menü:
PHP-Code:
<div class="naviitemholder">
<table width="240" border="0" cellspacing="0" cellpadding="0" style="background-color:transparent; border:none;">
<tr>
<td colspan="2" class="naviitem"><a href="javascript:SetLink1();"><div> Startseite</div></a></td>
</tr>
<tr>
<td width="10"> </td>
<td width="230" class="navisubitem"><a href="javascript:SetLink2();">
<div> Objekte anzeigen</div></a></td>
</tr>
<tr>
<td width="10"> </td>
<td width="230" class="navisubitem"><a href="javascript:SetLink3();">
<div> Objekte erfassen</div></a></td>
</tr>
<tr>
<td width="10"> </td>
<td width="230" class="navisubitem"><a href="javascript:SetLink4();">
<div> Objekte bearbeiten</div></a></td>
</tr>
<tr>
<td width="10"> </td>
<td width="230" class="navisubitem"><a href="javascript:SetLink5();">
<div> Objekte löschen</div></a></td>
</tr>
</table>
</div>
PHP-Code:
.naviitemholder { position:absolute; width:240px; left:5px; top:5px; }
.naviitem { left:5px; top:5px; width:240px; height:20px; font-family:Verdana, Arial, Helvetica, sans-serif;
color:#FFFFFF; background-image:url(../images/navi_bg.png); background-repeat:repeat-x; font-size:10px;
line-height:20px; font-weight:bold; text-decoration:none; }
.naviitem a { text-decoration:none; color:#FFFFFF; }
.naviitem:hover { background-image:url(../images/navi_bg_hover.png); }
.naviitem:hover a { text-decoration:none; color:#FFFFFF; }
.navisubitem { top:5px; width:90%; height:20px; font-family:Verdana, Arial, Helvetica, sans-serif; color:#FFFFFF;
background-image:url(../images/navi_bg_sub.png); background-repeat:repeat-x; font-size:10px; line-height:20px;
font-weight:bold; text-decoration:none; }
.navisubitem a { text-decoration:none; color:#FFFFFF; }
.navisubitem:hover { background-image:url(../images/navi_bg_sub_hover.png); }
.navisubitem:hover a { text-decoration:none; color:#FFFFFF; }
Kommentar