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.
45 lines
1011 B
45 lines
1011 B
7 years ago
|
# bi.horizontal
|
||
7 years ago
|
|
||
7 years ago
|
#### 水平流式布局
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/oj7y7q3o/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
|
|
||
|
BI.createWidget({
|
||
|
type: 'bi.horizontal',
|
||
|
element: "#wrapper",
|
||
|
items: [{
|
||
7 years ago
|
type: "bi.text_button",
|
||
|
cls: "layout-bg1",
|
||
|
text: "这里设置了lgap,rgap,tgap,bgap",
|
||
|
height: 30,
|
||
|
width: 200
|
||
7 years ago
|
}, {
|
||
7 years ago
|
type: "bi.text_button",
|
||
|
cls: "layout-bg2",
|
||
|
text: "这里设置了lgap,rgap,tgap,bgap",
|
||
|
height: 30,
|
||
|
width: 200
|
||
7 years ago
|
}]
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
|
||
|
## API
|
||
|
##### 基础属性
|
||
|
|
||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值
|
||
|
| :------ |:------------- | :----- | :----|:----
|
||
7 years ago
|
| columnSize | 每列宽度所组成的数组 | array | — | [ ] |
|
||
|
| verticalAlign | 元素的垂直对齐方式 | string | 参考相关css属性 | "middle" |
|
||
7 years ago
|
| scrollx | 设置水平方向是否有滚动条 | boolean | true,false | true |
|
||
|
|
||
|
---
|