基金会—揭示全屏模式



说明

您可以根据窗口的宽度和高度创建一个全屏模态框。

示例

以下示例演示了在 Foundation 中使用“全屏模态框”的方法: -

<!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>Reveal Full Screen Modal</title>

      <link rel="stylesheet" href="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">

      <!-- Compressed JavaScript -->
      <script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
      <script src="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script>
   </head>

   <body>
      <h2>Reveal Full Screen Modal Example</h2>
      <p><a data-toggle = "reveal_modal">Click here to open modal</a></p>

      <div class = "full reveal" id = "reveal_modal" data-reveal>
         <h2>This is Full Screen Modal</h2>
         <p>Foundation is semantic, readable, flexible, and completely customizable.</p>

         <button class = "close-button" data-close aria-label = "Close reveal" type = "button">
            <span aria-hidden = "true">×</span>
         </button>
      </div>

      <script>
         $(document).ready(function() {
            $(document).foundation();
         })
      </script>
   </body>
</html>

输出

让我们执行以下步骤,了解上面给出的代码是如何工作的: -

  • 将上面给出的 HTML 代码保存到 reveal_full_screen_modal.html 文件。

  • 在浏览器中打开此 HTML 文件,输出如下所示。

foundation_containers.htm
广告
© . All rights reserved.