目录

关闭画布设置(Off Canvas Setup)

描述 (Description)

您可以使用.off-canvas类和data-off-canvas属性创建画布菜单。

例子 (Example)

以下示例演示了在Foundation中使用.off canvas类 -

<!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>Off Canvas Setup</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>
      <div class = "off-canvas-wrapper">
         <div class = "off-canvas-wrapper-inner" data-off-canvas-wrapper>
            <div class = "off-canvas position-left" id = "offCanvas" data-off-canvas data-position = "left">
               Welcome to Foundation
            </div>
            <div class = "off-canvas-content" data-off-canvas-content>
               <button type = "button" class = "button" data-toggle = "offCanvas">
                  Click here to open content
               </button>
            </div>
         </div>
      </div>
      <script>
         $(document).ready(function() {
            $(document).foundation();
         })
      </script>
   </body>
</html>

输出 (Output)

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

  • 保存上面给出的html代码off_canvas_setup.html文件。

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

新页面打开
↑回到顶部↑
WIKI教程 @2018