forked from fanruan/fineui
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.
42 lines
1.1 KiB
42 lines
1.1 KiB
7 years ago
|
/**
|
||
|
* @class BI.IconButton
|
||
|
* @extends BI.BasicButton
|
||
|
* 图标标签
|
||
|
*/
|
||
|
BI.IconLabel = BI.inherit(BI.Single, {
|
||
|
|
||
|
props: {
|
||
|
baseCls: "bi-icon-label horizon-center",
|
||
|
iconWidth: null,
|
||
|
iconHeight: null
|
||
|
},
|
||
|
|
||
|
_init: function () {
|
||
|
BI.IconLabel.superclass._init.apply(this, arguments);
|
||
|
var o = this.options;
|
||
|
this.element.css({
|
||
|
textAlign: "center"
|
||
|
});
|
||
|
this.icon = BI.createWidget({
|
||
|
type: "bi.icon",
|
||
|
width: o.iconWidth,
|
||
|
height: o.iconHeight
|
||
|
});
|
||
|
if (BI.isNumber(o.height) && o.height > 0 && BI.isNull(o.iconWidth) && BI.isNull(o.iconHeight)) {
|
||
|
this.element.css("lineHeight", o.height + "px");
|
||
|
BI.createWidget({
|
||
|
type: "bi.default",
|
||
|
element: this,
|
||
|
items: [this.icon]
|
||
|
});
|
||
|
} else {
|
||
|
this.element.css("lineHeight", "1");
|
||
|
BI.createWidget({
|
||
|
element: this,
|
||
|
type: "bi.center_adapt",
|
||
|
items: [this.icon]
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
BI.shortcut("bi.icon_label", BI.IconLabel);
|