我想在Jquery Button中使用我自己的32 x 32 px图标?这可能吗?
我可以使用强制图标的背景大小为16x16,但后来太小。
.ui-icon-custom-risk { background-size:16px 16px; background-image: url(icons/Current_Risk.png) !important; }
.ui-icon-custom-matrix { background-size:32px 32px;; background-image: url(icons/Current_matrix.png) !important; }
$('#btn1').button({
label: 'Risk',
icons: {primary: 'ui-icon-custom-risk'}
});
$('#btn2').button({
text: false,
icons: {
primary: "ui-icon-custom-matrix"
}
});