Statistics

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

描述 (Description)

无论何时处理仪表板,都需要突出显示一些重要的数字。 您可以使用.stat类来实现此.stat

例子 (Example)

以下示例演示了在Foundation中使用statistics

<!doctype html>
<html>
   <head>
      <title>Statistics</title>
      <link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/css/foundation.css">
   </head>
   <body>
      <p>Number of online users</p>
      <div class = "stat">7080</div>
      <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>
      <script>
         $(document).ready(function() {
            $(document).foundation();
         })
      </script>
   </body>
</html>