如何使Jquery UI Button具有32x32 px非默认图标?

时间:2012-11-29 11:28:44

标签: jquery css jquery-ui

我想在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"  
    }
});

0 个答案:

没有答案