錨點(diǎn):此布局給予用戶給出每個(gè)元素相對(duì)于容器大小的大小的特權(quán)。
這里是使用Anchor布局的簡(jiǎn)單語(yǔ)法:
layout: 'anchor'
下面是一個(gè)簡(jiǎn)單的例子,顯示了Anchor布局的用法
<!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 : 'anchor' ,
width : 600,
items : [{
title : 'Panel 1',
html : 'panel 1',
height : 100,
anchor : '50%'
},{
title : 'Panel 2',
html : 'panel 2',
height : 100,
anchor : '100%'
},{
title : 'Panel 3',
html : 'panel 3',
height : 100,
anchor : '-100'
},{
title : 'Panel 4',
html : 'panel 4',
anchor : '-70, 500'
}]
});
});
</script>
</head>
<body>
</body>
</html>
運(yùn)行結(jié)果截圖:
更多建議: