Ext.js 主題

2022-05-20 17:26 更新

Ext.js提供了許多要在您的應(yīng)用程序中使用的主題。 你可以添加不同的主題的經(jīng)典主題,看到輸出的差異,這是簡(jiǎn)單地通過(guò)替換主題CSS文件,如下所述。

Neptune Theme

考慮你最初的Hello World應(yīng)用程序。 從應(yīng)用程序中刪除以下CSS:

./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css

添加以下CSS以使用海王星主題:

./ext-6.0.0/build/classic/theme-neptune/resources/theme-neptune-all.css

要查看效果,請(qǐng)嘗試以下程序:

<!DOCTYPE html>
<html>
   <head>
      <link href="./ext-6.0.0/build/classic/theme-neptune/resources/theme-neptune-all.css" rel="stylesheet">
      <script src="./ext-6.0.0/build/ext-all.js"></script>
      <script type="text/javascript">
         Ext.onReady(function() {
         Ext.create('Ext.Panel', {
            renderTo: 'helloWorldPanel',
            height: 200,
            width: 600,
            title: 'Hello world',
            html: 'First Ext JS Hello World Program'
            });
         });
      </script>
   </head>
   <body>
      <div id="helloWorldPanel" />
   </body>
</html>

這會(huì)產(chǎn)生以下結(jié)果:

Neptune Theme

Crisp Theme

考慮你最初的Hello World應(yīng)用程序。 從應(yīng)用程序中刪除以下CSS:

./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css

添加以下CSS以使用海王星主題:

./ext-6.0.0/build/classic/theme-crisp/resources/theme-crisp-all.css

要查看效果,請(qǐng)嘗試以下程序:

<!DOCTYPE html>
<html>
   <head>
      <link href="./ext-6.0.0/build/classic/theme-crisp/resources/theme-crisp-all.css" rel="stylesheet" />
      <script src="./ext-6.0.0/build/ext-all.js"></script>
      <script type="text/javascript">
         Ext.onReady(function() {
         Ext.create('Ext.Panel', {
            renderTo: 'helloWorldPanel',
            height: 200,
            width: 600,
            title: 'Hello world',
            html: 'First Ext JS Hello World Program'
            });
         });
      </script>
   </head>
   <body>
      <div id="helloWorldPanel" />
   </body>
</html>

這會(huì)產(chǎn)生以下結(jié)果:

Crisp Theme

Triton主題

考慮你最初的Hello World應(yīng)用程序。 從應(yīng)用程序中刪除以下CSS:

./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css

添加以下CSS以使用Triton主題:

./ext-6.0.0/build/classic/theme-triton/resources/theme-triton-all.css

要查看效果,請(qǐng)嘗試以下程序:

<!DOCTYPE html>
<html>
   <head>
      <link href="./ext-6.0.0/build/classic/theme-triton/resources/theme-triton-all.css" rel="stylesheet">
      <script src="./ext-6.0.0/build/ext-all.js"></script>
      <script type="text/javascript">
         Ext.onReady(function() {
         Ext.create('Ext.Panel', {
            renderTo: 'helloWorldPanel',
            height: 200,
            width: 600,
            title: 'Hello world',
            html: 'First Ext JS Hello World Program'
            });
         });
      </script>
   </head>
   <body>
      <div id="helloWorldPanel" />
   </body>
</html>

這會(huì)產(chǎn)生以下結(jié)果:

Crisp Theme

Gray Theme

考慮你最初的Hello World應(yīng)用程序。 從應(yīng)用程序中刪除以下CSS:

./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css

添加以下CSS以使用灰色主題:

./ext-6.0.0/build/classic/theme-gray/resources/theme-gray-all.css

要查看效果,請(qǐng)嘗試以下程序:

<!DOCTYPE html>
<html>
   <head>
      <link href="./ext-6.0.0/build/classic/theme-gray/resources/theme-gray-all.css" rel="stylesheet" />
      <script type="text/javascript" src="./ext-6.0.0/build/ext-all.js"></script>
      <script type="text/javascript">
         Ext.onReady(function() {
         Ext.create('Ext.Panel', {
            renderTo: 'helloWorldPanel',
            height: 200,
            width: 600,
            title: 'Hello world',
            html: 'First Ext JS Hello World Program'
            });
         });
      </script>
   </head>
   <body>
      <div id="helloWorldPanel" />
   </body>
</html>

這會(huì)產(chǎn)生以下結(jié)果:

Gray Theme


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)