codecamp

Ext.js 主题

Ext.js提供了许多要在您的应用程序中使用的主题。 你可以添加不同的主题的经典主题,看到输出的差异,这是简单地通过替换主题CSS文件,如下所述。

Neptune Theme

考虑你最初的Hello World应用程序。 从应用程序中删除以下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

要查看效果,请尝试以下程序:

<!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>

这会产生以下结果:

Neptune Theme

Crisp Theme

考虑你最初的Hello World应用程序。 从应用程序中删除以下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

要查看效果,请尝试以下程序:

<!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>

这会产生以下结果:

Crisp Theme

Triton主题

考虑你最初的Hello World应用程序。 从应用程序中删除以下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

要查看效果,请尝试以下程序:

<!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>

这会产生以下结果:

Crisp Theme

Gray Theme

考虑你最初的Hello World应用程序。 从应用程序中删除以下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

要查看效果,请尝试以下程序:

<!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>

这会产生以下结果:

Gray Theme


Ext.js 拖放
Ext.js 自定义事件和监听器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }