You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
903 B
41 lines
903 B
7 years ago
|
# bi.center
|
||
7 years ago
|
|
||
7 years ago
|
#### 水平和垂直方向都居中容器, 非自适应,用于宽度高度固定的面板
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/8fd2nvkm/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
7 years ago
|
|
||
7 years ago
|
BI.createWidget({
|
||
7 years ago
|
type: "bi.center",
|
||
|
element: "#wrapper",
|
||
|
items: [{
|
||
|
type: "bi.label",
|
||
|
text: "Center 1,这里虽然设置label的高度30,但是最终影响高度的是center布局",
|
||
|
cls: "layout-bg1",
|
||
|
whiteSpace: "normal"
|
||
|
},{
|
||
|
type: "bi.label",
|
||
|
text: "Center 2,为了演示label是占满整个的,用了一个whiteSpace:normal",
|
||
|
cls: "layout-bg2",
|
||
|
whiteSpace: "normal"
|
||
|
}],
|
||
|
hgap: 20,
|
||
|
vgap: 20
|
||
7 years ago
|
});
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
|
||
|
## API
|
||
|
##### 基础属性
|
||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值
|
||
|
| :------ |:------------- | :----- | :----|:----
|
||
7 years ago
|
|
||
7 years ago
|
|
||
|
---
|