Foundation-reveal-sizing

提供:Dev Guides
移動先:案内検索

基盤-サイジングを明らかにする

説明

以下に説明するように、tiny _、 small_、および_large_クラスを追加することにより、小型、小型、大型のモーダルなど、さまざまなタイプのモーダルを作成します-

小さなサイズのモーダル

モーダルの小さなサイズを作成します。

次の例は、Foundationでの_tiny size modal_の使用を示しています-

<!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 Tiny Size Modal</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>Reveal Tiny Size of Modal Example</h2>
      <p><a data-toggle = "reveal_modal">Click here to open modal</a></p>

      <div class = "tiny reveal" id = "reveal_modal" data-reveal>
         <h2>Tiny 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_tiny_modall ファイルを保存します。
  • このHTMLファイルをブラウザで開くと、次のように出力が表示されます。

小型モーダル

モーダルの小さなサイズを作成します。

次の例は、Foundationでの_small size modal_の使用を示しています-

<!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 Small Size Modal</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>Reveal Small Size of Modal Example</h2>
      <p><a data-toggle = "reveal_modal">Click here to open modal</a></p>

      <div class = "small reveal" id = "reveal_modal" data-reveal>
         <h2>Small 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_small_modall ファイルを保存します。
  • このHTMLファイルをブラウザで開くと、次のように出力が表示されます。

大型モーダル

モーダルの大きなサイズを作成します。

次の例は、Foundationでの_large size modal_の使用を示しています-

<!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 Large Size Modal</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>Reveal Large Size of Modal Example</h2>
      <p><a data-toggle = "reveal_modal">Click here to open modal</a></p>

      <div class = "large reveal" id = "reveal_modal" data-reveal>
         <h2>Large 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_large_modall ファイルを保存します。
  • このHTMLファイルをブラウザで開くと、次のように出力が表示されます。