Visualizzazione dei risultati da 1 a 3 su 3

Discussione: rollover su TD

  1. #1

    rollover su TD

    Come posso effettuare il rollover su una <td> (cella)?
    Un semplice cambio di colore?

  2. #2
    così:

    <html>
    <head>
    <title>Untitled</title>
    <style>
    .over {
    background:red;}
    .out {
    background:blue;}
    </style>
    </head>

    <body>

    <table>
    <tr><td onMouseOver="this.className='over'" onMouseOut="this.className='out'"> prova </td></tr>
    </table>

    </body>
    </html>
    Anche io leggo barze-bastarde
    Athlon 64 X2 4400@2500 daily - Zalman CNPS9500 - Asus A8n-Sli Premium - Crucial Ballistix Tracer PC4000 500mhz Sinc. - Sapphire Radeon X1900XT 512mb - Zalman VF900Cu - Seagate 320Gb 7200.10 - LG H22N 18x - T.t. Soprano - LcPower Titan 560W

  3. #3
    l'esempio completo è questo:

    <html>
    <head>
    <title>Untitled</title>
    <style>
    .over {
    background:red;}
    .out {
    background:blue;}
    </style>
    </head>

    <body>
    esempio 1 - con richiamo a classi CSS
    <table>
    <tr><td onMouseOver="this.className='over'" onMouseOut="this.className='out'"> prova </td></tr>
    </table>






    esempio 2 - con js in linea
    <table>
    <tr><td onMouseOver="this.style.background ='red'" onMouseOut="this.style.background ='blue'"> prova </td></tr>
    </table>

    </body>
    </html>
    Anche io leggo barze-bastarde
    Athlon 64 X2 4400@2500 daily - Zalman CNPS9500 - Asus A8n-Sli Premium - Crucial Ballistix Tracer PC4000 500mhz Sinc. - Sapphire Radeon X1900XT 512mb - Zalman VF900Cu - Seagate 320Gb 7200.10 - LG H22N 18x - T.t. Soprano - LcPower Titan 560W

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.