Ext.js 絕對(duì)布局

2022-05-19 15:08 更新

描述

絕對(duì):此布局允許使用容器中的XY坐標(biāo)定位項(xiàng)目。

語法

這里是使用絕對(duì)布局的簡(jiǎn)單語法

 layout: 'absolute' 

下面是一個(gè)簡(jiǎn)單的例子顯示絕對(duì)布局的使用

<!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: 'absolute' ,
            items: [{
               title: 'Panel 1',
               x: 50,
               y: 50,
               html: 'Positioned at x:50, y:50',
               width: 500,
               height: 100
            },{
               title: 'Panel 2',
               x: 100,
               y: 95,
               html: 'Positioned at x:100, y:95',
               width: 500,
               height: 100
            }]
         });
      });
   </script>
</head>
<body>
</body>
</html>

這將產(chǎn)生以下結(jié)果


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)