Hover Table

优质
小牛编辑
115浏览
2023-12-01

描述 (Description)

Foundation允许您通过添加.hover类将鼠标悬停在表行上。

例子 (Example)

以下示例演示了在基础中使用hover table -

<!doctype html>
   <head>
      <meta charset = "utf-8" />
      <meta http-equiv = "x-ua-compatible" content = "ie = edge" />
      <meta name = "viewport" content = "width = device-width, initial-scale = 1.0" />
      <title>Hover Table</title>
      <link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/css/foundation.css">
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/foundation.min.js"></script>
   </head>
   <body>
      <h2>Hover Table Example</h2>
      <table class = "hover">
         <thead>
            <tr>
               <th>Team</th>
               <th>Player Name</th>
               <th>Batsman/Bowler</th>
            </tr>
         </thead>
         <tbody>
            <tr>
               <td>India</td>
               <td>Sachin Tendulkar</td>
               <td>Batsman</td>
            </tr>
            <tr>
               <td>South Africa</td>
               <td>Shaun Pollock</td>
               <td>Bowler</td>
            </tr>
            <tr>
               <td>West Indies</td>
               <td>Brian Lara</td>
               <td>Batsman</td>
            </tr>
            <tr>
               <td>Australia</td>
               <td>Shane Watson</td>
               <td>Bowler</td>
            </tr>
            <tr>
               <td>Ross Taylor</td>
               <td>New Zealand</td>
               <td>Batsman</td>
            </tr>
         </tbody>
      </table>
   </body>
</html>