Ext.js - 正常主題的 FontAwesome



當我們使用非 Triton 主題時,需要在專案中明確新增 Font Awesome 樣式表。

語法

在 HTML 頁面中新增 Font Awesome 樣式的 CDN 檔案。

<link href = "https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel = "stylesheet" />

現在,新增一個類,如 −

iconCls : 'fa fa-car'

示例

以下是新增 Font Awesome 類的簡單示例。

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css" 
      rel = "stylesheet" />
      <script type = "text/javascript" 
         src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>
      <link href = "https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" 
         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>

上述程式將產生以下結果 −

extjs_fonts.htm
廣告
© . All rights reserved.