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.
47 lines
1.1 KiB
47 lines
1.1 KiB
7 years ago
|
# bi.image_button
|
||
|
|
||
|
## 图片的button,基类[BI.BasicButton](/core/basicButton.md)
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/yc0g9gLw/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
|
|
||
|
BI.createWidget({
|
||
7 years ago
|
type: 'bi.image_button',
|
||
7 years ago
|
src: "http://www.easyicon.net/api/resizeApi.php?id=1206741&size=128",
|
||
|
width: 100,
|
||
|
height: 100
|
||
|
});
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
## API
|
||
|
##### 基础属性
|
||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值
|
||
|
| :------ |:------------- | :-----| :----|:----
|
||
7 years ago
|
| src |图片路径 |string | —|" " |
|
||
|
| iconWidth | 图标宽度 | number/string| — | "100%" |
|
||
|
| iconHeight | 图标高度 | number/string | — | "100%"|
|
||
7 years ago
|
|
||
|
|
||
|
## 对外方法
|
||
|
| 名称 | 说明 | 回调参数
|
||
|
| :------ |:------------- | :-----
|
||
|
| setImageWidth | 设置图片宽度| 宽度width |
|
||
|
| setImageHeight| 设置图片高度| 高度height|
|
||
|
| getImageWidth | 获取图片宽度| —|
|
||
|
| getImageHeight | 获取图片高度| —|
|
||
|
| setSrc| 设置图片路径| src |
|
||
|
| getSrc |获取图片路径| — |
|
||
|
|
||
|
|
||
|
|
||
|
---
|
||
|
|
||
7 years ago
|
|