当前位置: 首页 > 文档资料 > jQuery Mobile 教程 >

jQuery Mobile 网格布局

优质
小牛编辑
142浏览
2023-12-01

jQuery Mobile 提供了一套基于 CSS 的分列布局。然而,在移动设备上,由于考虑手机的屏幕宽度狭窄,一般不建议使用分栏分列布局。

但有时您想要将较小的元素(如按钮或导航标签)并排地排列在一起,就像是在一个表格中一样。这种情况下,推荐使用分列布局。

网格中的列是等宽的(合计是 100%),没有边框、背景、margin 或 padding。

这里有四种布局网格可供使用:

  • 网格类:ui-grid-solo
  • 列:1
  • 列宽:100%
  • 对应:ui-block-a

实例

您也可以通过使用内嵌样式来自定义块:

<div><span>Text..</span></div>

多行

在列中也可以有多个行。

注意:ui-block-a-class 总是创建一个新行:

<div class="ui-grid-b">
<div class="ui-block-a"><span>一些文本</span></div>
<div class="ui-block-b"><span>一些文本</span></div>
<div class="ui-block-c"><span>一些文本</span></div>
<div class="ui-block-a"><span>一些文本</span></div>
<div class="ui-block-b"><span>一些文本</span></div>
<div class="ui-block-a"><span>一些文本</span></div>
</div>

响应式网格

在小屏幕中,不建议一行中并排太多按钮(文本会缩短)。

我们在容器使用 ui-responsive 类来创建响应式网格。