當(dāng)我們使用任何不是Triton主題的主題時(shí),我們需要在我們的項(xiàng)目中顯式地添加font-awesome樣式表:
在HTML頁面中添加用于字體樣式的CDN文件。
<link rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="stylesheet" />
現(xiàn)在添加類為:
iconCls:'fa fa-car'
下面是一個(gè)添加font-awesome類的簡(jiǎn)單示例
<!DOCTYPE html>
<html>
<head>
<link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet" />
<script type="text/javascript" src="./ext-6.0.0/build/ext-all.js"></script>
<link rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="stylesheet" />
<script type="text/javascript">
Ext.onReady(function() {
Ext.create('Ext.container.Container', {
renderTo : Ext.getBody(),
layout : 'auto' ,
width : 600,
items : [{
xtype : 'button',
iconCls : 'fa fa-car',
text : 'Browse Fil1e'
},{
xtype : 'button',
iconCls : 'fa fa-file',
text : 'Browse File3'
},{
xtype : 'button',
iconCls : 'fa fa-home',
text : 'Browse File4'
},{
xtype : 'button',
iconCls : 'fa fa-folder',
text : 'Browse File5'
}]
});
});
</script>
</head>
<body>
<div id = "panel" > </div>
</body>
</html>
這將產(chǎn)生以下結(jié)果
更多建議: