Mousover

fishman

Mitglied
Hi ihr coder. Brauche ma eure Hilfe:

Ich bräuchte ein script dass wenn ich über eine TD fahre dass sich die farbe ändert.
Das ganze hab ich aber ich möchte verschiedene Farben für verschiedene TDs

Wär da was machbar?

danke schonma im vorraus.
MfG Fishi
 
Hi,

versuchs mal hiermit:
Code:
<table style="background-color: #ffffff;" border="1" cellpadding="0" cellspacing="0">
    <tr style="height: 50px;">
        <td onmouseover="this.style.backgroundColor = '#ffff00';" onmouseout="this.style.backgroundColor = '#ffffff';" style="width: 50px;">&nbsp;</td>
        <td onmouseover="this.style.backgroundColor = '#ff0000';" onmouseout="this.style.backgroundColor = '#ffffff';" style="width: 50px;">&nbsp;</td>
    </tr>
    <tr style="height: 50px;">
        <td onmouseover="this.style.backgroundColor = '#00ff00';" onmouseout="this.style.backgroundColor = '#ffffff';" style="width: 50px;">&nbsp;</td>
        <td onmouseover="this.style.backgroundColor = '#0000ff';" onmouseout="this.style.backgroundColor = '#ffffff';" style="width: 50px;">&nbsp;</td>
    </tr>
</table>
Beim Überstreichen mit der Maus ändert sich die Hintergrundfarbe individuell. Verlässt
der Mauszeiger die Zelle, wird der Hintergrund wieder zurückgesetzt.

Ciao
Quaese
 

Neue Beiträge

Zurück