【SENCHA TOUCH】Sencha Touch ExtJs 给 Button 添加图片(二)

上次弄了个显示button的,但是后面没有透明,今天弄了透明的。得重写样式。看下效果:




代码如下:

id : 'bt_kt',
							xtype : 'button',
							text : ' 勘探 ',
							ui : 'normal',
							cls : 'noBorder',
							iconAlign : 'top',
							iconCls : 'bt_kt',
							iconMask : true,
							handler : function onclick() {
							}



cssy样式:


/**按钮无背景***/
.noBorder{
	background-color:transparent !important;
	border:none !important;
	background-image:none !important;
}


你可能感兴趣的:(【SENCHA,TOUCH】)