Ext.js - 锚点布局
此布局允许用户根据容器大小指定每个元素的大小。
语法
以下是使用锚点布局的简单语法。
layout: '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>
上述程序将产生以下结果 −