Ext.js提供了許多要在您的應(yīng)用程序中使用的主題。 你可以添加不同的主題的經(jīng)典主題,看到輸出的差異,這是簡(jiǎn)單地通過(guò)替換主題CSS文件,如下所述。
考慮你最初的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é)果:
考慮你最初的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é)果:
考慮你最初的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é)果:
考慮你最初的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é)果:
更多建議: