
- Foundation 常規
- Foundation - 全域性樣式
- Foundation - Sass
- Foundation - JavaScript
- Foundation - JavaScript 工具
- Foundation - 媒體查詢
- Foundation - 網格
- Foundation - 柔性網格
- Foundation - 表單
- Foundation - 可見性類
- Foundation - 基本排版
- Foundation - 排版幫助程式
- Foundation - 基本控制元件
- Foundation - 導航
- Foundation - 容器
- Foundation - 媒體
- Foundation - 外掛
- Foundation SASS
- Foundation - Sass 函式
- Foundation - Sass 複合符
- Foundation 庫
- Foundation - Motion UI
- Foundation 實用資源
- Foundation - 快速指南
- Foundation - 實用資源
- Foundation - 討論
基金會 - 豎向選項卡
描述
垂直顯示選項卡。
示例
以下示例演示了在 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>Vertical Tabs</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/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/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script> </head> <body> <h2>Vertical Tabs Example</h2> <div class = "row collapse"> <div class = "medium-3 columns"> <ul class = "tabs vertical" data-tabs id = "tabs_example"> <li class = "tabs-title is-active"><a href = "#tab1">Player 1</a></li> <li class = "tabs-title"><a href = "#tab2">Player 2</a></li> <li class = "tabs-title"><a href = "#tab3">Player 3</a></li> <li class = "tabs-title"><a href = "#tab4">Player 4</a></li> <li class = "tabs-title"><a href = "#tab5">Player 5</a></li> </ul> </div> <div class = "medium-9 columns"> <div class = "tabs-content vertical" data-tabs-content = "tabs_example"> <div class = "tabs-panel is-active" id = "tab1"> <p>First Player</p> <p>Sachin Tendulkar</p> </div> <div class = "tabs-panel" id = "tab2"> <p>Second Player</p> <p>M S Dhoni</p> </div> <div class = "tabs-panel" id = "tab3"> <p>Third Player</p> <p>Shane Warne</p> </div> <div class = "tabs-panel" id = "tab4"> <p>Fourth Player</p> <p>Shaun Pollock</p> </div> <div class = "tabs-panel" id = "tab5"> <p>Five Player</p> <p>Adam Gilchrist</p> </div> </div> </div> <script> $(document).ready(function() { $(document).foundation(); }) </script> </body> </html>
輸出
我們執行以下步驟來了解上述程式碼的工作原理 -
儲存上述給定的 HTML 程式碼vertical_tabs.html 檔案。
在瀏覽器中開啟此 HTML 檔案,顯示如下所示的輸出。
foundation_containers.htm
廣告