Anchor
优质
小牛编辑
128浏览
2023-12-01
此布局为用户提供了权限,以指定每个元素相对于容器大小的大小。
语法 (Syntax)
以下是使用Anchor布局的简单语法。
layout: 'anchor'
例子 (Example)
以下是一个显示Anchor布局用法的简单示例。
<!DOCTYPE html>
<html>
<head>
<link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css"
rel = "stylesheet" />
<script type = "text/javascript"
src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/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>