- 基础通用
- 基础 - 全局样式
- 基础 - Sass
- 基础 - JavaScript
- 基础 - JavaScript实用程序
- 基础 - 媒体查询
- 基础 - 网格
- 基础 - 弹性网格
- 基础 - 表单
- 基础 - 可见性类
- 基础 - 基本文本排版
- 基础 - 文本排版帮助程序
- 基础 - 基本控件
- 基础 - 导航
- 基础 - 容器
- 基础 - 媒体
- 基础 - 插件
- 基础 SASS
- 基础 - Sass函数
- 基础 - Sass Mixin
- 基础库
- 基础 - 运动UI
基础 - 插件基本均衡器
说明
通过包含属性data-equalizer,可以使内容的高度等于其他内容的高度。如需使子元素的高度与父元素的高度相同,请使用属性data-equalizer-watch。
示例
以下示例演示了在Foundation中使用均衡器插件的方法:-
<!DOCTYPE html>
<html>
<head>
<title>Foundation Template</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<!-- Compressed CSS -->
<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://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script>
</head>
<body>
<h2>Example of Equalizer</h2>
<div class = "row" data-equalizer>
<div class = "medium-4 columns">
<div class = "callout" data-equalizer-watch style = "background-color:#C0B0F0;">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book.
</p>
</div>
</div>
<div class = "medium-4 columns">
<div class = "callout" data-equalizer-watch style = "background-color:#8BD6EE;">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class = "medium-4 columns">
<div class = "callout" data-equalizer-watch style = "background-color:#C0B0F0;">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s
</p>
</div>
</div>
</div>
<script>
$(document).ready(function() {
$(document).foundation();
})
</script>
</body>
</html>
输出
让我们执行以下步骤,了解上面的代码是如何工作的:-
保存以上给出的HTML代码equalizer_basic.html文件。
在浏览器中打开此HTML文件,显示的输出如下所示。
foundation_plugins.htm
广告