Ext.js 自适应布局
2022-05-19 14:39 更新
描述
适合:在此布局中,容器用单个面板填充,当没有与布局相关的特定要求时,则使用此布局。
语法
这里是使用Fit布局的简单语法。
layout: 'fit'
例
以下是一个简单的示例,显示了Fit布局的用法
<!DOCTYPE html>
<html>
<head>
<link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-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.container.Container', {
renderTo : Ext.getBody(),
layout : {
type :'fit'
},
width : 600,
defaults: {
bodyPadding: 15
},
items : [{
title: 'Panel1',
html : 'This is panel 1'
},{
title: 'Panel2',
html : 'This is panel 2'
},{
title: 'Panel3',
html : 'This is panel 3'
},{
title: 'Panel4',
html : 'This is panel 4'
}]
});
});
</script>
</head>
<body>
</body>
</html>
运行结果如下:
以上内容是否对您有帮助:
更多建议: