1

我想在 Jquery Button 中使用我自己的 32 x 32 像素图标?
这可能吗?我可以通过将图标的背景大小强制为 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"  
    }
});
4

0 回答 0