Font-Awesome与Triton主题(Font-Awesome with Triton theme)
优质
小牛编辑
129浏览
2023-12-01
使用Triton主题,我们不需要任何明确的font-awesome样式表要求。 我们可以直接使用font-awesome类,因为font-awesome包含在内置的Triton主题中。
语法 (Syntax)
只需将font-awesome类添加到iconCls中 -
iconCls : 'fa fa-car'
例子 (Example)
以下是添加font-awesome类的简单示例。
<!DOCTYPE html>
<html>
<head>
<link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-triton/resources/theme-triton-all.css"
rel = "stylesheet" />
<script type = "text/javascript"
src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>
<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>