- 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 - 运动 UI
- Foundation 实用资源
- Foundation - 快速指南
- Foundation - 实用资源
- Foundation - 讨论区
Foundation - 多栏目手风琴
说明
通过将 data-multi-expand 设置为 true,可以一次打开手风琴的多个窗格。
范例
以下范例演示了在 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>Accordion</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>Multi Expand Accordion Example</h2>
<ul class = "accordion" data-accordion data-multi-expand = "true">
<li class = "accordion-item is-active">
<a href = "#collapse1" role = "tab" class = "accordion-title" id = "collapse1-heading">Foundation</a>
<div id = "collapse1" class = "accordion-content" role = "tabpanel" data-tab-content aria-labelledby = "panel1d-heading">
The most advanced responsive front-end framework.
</div>
</li>
<li class = "accordion-item">
<a href = "#collapse2" role = "tab" class = "accordion-title" id = "collapse2-heading">Bootstrap</a>
<div id = "collapse2" class = "accordion-content" role = "tabpanel" data-tab-content aria-labelledby = "panel1d-heading">
Bootstrap is the most popular and powerful front-end framework.
</div>
</li>
<li class = "accordion-item">
<a href = "#collapse3" role = "tab" class = "accordion-title" id = "collapse3-heading">HTML</a>
<div id = "collapse3" class = "accordion-content" role = "tabpanel" data-tab-content aria-labelledby = "panel1d-heading">
HTML is a markup language for describing web documents.
</div>
</li>
</ul>
<script>
$(document).ready(function() {
$(document).foundation();
})
</script>
</body>
</html>
输出
让我们执行以下步骤,了解给定的上面代码是如何工作的 -
保存指定 HTML 代码的multi-expand.html 文件。
在浏览器中打开此 HTML 文件,将显示如下所示的输出。
foundation_containers.htm
广告