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

rollover

Status
Für weitere Antworten geschlossen.

[Anonym]

Neues Mitglied
Hallo,
wie mache ich bei html und frames den roll over effekt, dass wenn man auf den bottom mit der maus drüber fährt das er sich verändert ?

MFG MAX
 
Auf Frames?
Ehrlich gesagt keine Ahnung,
aber bei normalen Elementen...

HTML:
<blabla onMouseOver="JavaScript-Befehl" />
 
hallo,

hier versuche es mal damit.^^


<html lang="en">
<head>
<style type="text/css">
#navcontainer { width: 200px; }

#navcontainer ul
{
margin-left: 30px;
padding-left: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
}

#navcontainer a
{
display: block;
padding: 3px;
width: 160px;
background-color: #036;
border-bottom: 1px solid #eee;
}

#navcontainer a:link, #navlist a:visited
{
color: #EEE;
text-decoration: none;
}

#navcontainer a:hover
{
background-color: #369;
color: #fff;
}
</style>
</head>
<body>
<body>
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>
</div>
</body>
</html>




gruß tzazu
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben