Sencha Touch - hBox 佈局



說明

hbox - 此佈局允許對元素進行水平分佈。

語法

以下是使用 hbox 佈局的簡單語法。

 layout: 'hbox' 

範例

以下是一個顯示 hBox 佈局用法的簡單示例。

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/resources/css/sencha-touch.css" rel = "stylesheet" />
      <script type = "text/javascript" src = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/sencha-touch-all.js"></script>
      <script type = "text/javascript">
         Ext.application({
            name: 'Sencha',
            launch: function() {
               Ext.create('Ext.Container', {
                  fullscreen: true, layout: 'hbox', items: [
                     {
                        xtype: 'panel', html: 'message list', flex: 1
                     },
                     {
                        xtype: 'panel', html: 'message preview', flex: 2
                     }
                  ]
               });
            }
         });
      </script>
   </head>
</html>

這會產生以下結果 -

sencha_touch_layout.htm
廣告
© . All rights reserved.