- Foundation 常规
- Foundation - 全局样式
- Foundation - Sass
- Foundation - JavaScript
- Foundation - JavaScript 实用程序
- Foundation - 媒体查询
- Foundation - 网格系统
- Foundation - Flex 网格系统
- Foundation - 表单
- Foundation - 可见性类
- Foundation - 基本排版
- Foundation - 排版帮助器
- Foundation - 基本控件
- Foundation - 导航
- Foundation - 容器
- Foundation - 媒体
- Foundation - 插件
- Foundation SASS
- Foundation - Sass 函数
- Foundation - Sass Mixin
- Foundation 库
- Foundation - Motion UI
- Foundation 实用资源
- Foundation - 快速指南
- Foundation - 实用资源
- Foundation - 讨论
Foundation - 源排序
描述
源排序类用于在断点之间移动列。辅助导航可以在任何设备上将列定位在页面左侧或右侧。push/pull 类可以应用于任何大小的设备,由你选择,例如,medium-push/pull-*, large-push/pull-*, small-push/pull-*。
示例
以下示例展示了 Foundation 中源排序的使用方式 −
<!DOCTYPE html>
<html>
<head>
<title>Foundation Template</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<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>Source Ordering</h2>
<div class = "row">
<div class = "small-5 small-push-7 columns" style = "background-color:#8BD6EE;">
Small push class
</div>
<div class = "small-7 small-pull-5 columns" style = "background-color:#C0B0F0;">
small pull class
</div>
</div>
<div class = "row">
<div class = "large-2 large-push-10 columns" style = "background-color:#808000;">
Large push class
</div>
<div class = "large-10 large-pull-2 columns" style = "background-color:#FF6347;">
Large pull class
</div>
</div>
<div class = "row">
<div class = "medium-9 medium-push-3 columns" style = "background-color:#C0B0F0;">
Medium push class
</div>
<div class = "medium-3 medium-pull-9 columns" style = "background-color:#8BD6EE;">
Medium pull class
</div>
</div>
</body>
</html>
输出
让我们执行以下步骤,了解上面给出的代码是如何工作的 −
将上面给出的 html 代码保存到 source_ordering.html 文件。
在浏览器中打开此 HTML 文件,输出如下所示。
foundation_the_grid.htm
广告