ExtJS4学习笔记之HBox的使用(转)
本文转自:http://www.cnblogs.com/gmval/archive/2011/06/02/2067636.html
要使用HBox布局方式,首先的熟悉下一下几个主要属性:
一、align:字符类型,指示组件在容器内的对齐方式。有如下几种属性。
1、top(默认):排列于容器顶端。
2、middle:垂直居中排列于容器中。
3、stretch:垂直排列且拉伸义填补容器高度
4、stretchmax:垂直拉伸,并且组件以最高高度的组件为准。
二、flex:数字类型,指示组件在容器中水平呈现方式,通俗的讲,就是指示组件在容器中的相对宽度。
三、pack : 字符类型,指示组件在容器的位置,有如下几种属性。
1、start(默认):组件在容器左边
2、center:组件在容器中间
3、end:组件在容器的右边
实例代码:
一、HTML代码:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>HBox实例--MHZG.NET</title>
- <link rel="stylesheet" type="text/css" href="http://www.cnblogs.com/resources/css/ext-all.css" />
- <script type="text/javascript" src="http://www.cnblogs.com/bootstrap.js"></script>
- <script type="text/javascript" src="http://www.cnblogs.com/locale/ext-lang-zh_CN.js"></script>
- <script type="text/javascript" src="hbox.js"></script>
- </head>
- <body>
- </body>
- <div id="d1"></div>
- <div id="d2"></div>
- <div id="d3"></div>
- </html>
hbox.js代码:
- Ext.onReady(function(){
- var d1 = Ext.create('Ext.Panel',{
- title:'HBox 顶对齐,且组件在容器的左边',
- frame:true,
- width:600,
- height:100,
- items:[{
- anchor:'100%',
- layout: {
- type:'hbox',
- padding:'10',
- pack:'start',
- align:'top'
- },
- defaults:{margins:'0 5 0 0'},
- items:[{
- xtype:'button',
- text: 'Button 1'
- },{
- xtype:'button',
- text: 'Button 2'
- },{
- xtype:'button',
- text: 'Button 3'
- },{
- xtype:'button',
- text: 'Button 4'
- }]
- }]
- })
- d1.render('d1');
- var d2 = Ext.create('Ext.Panel',{
- title:'HBox 垂直对齐,且组件在容器的右边',
- frame:true,
- width:600,
- height:100,
- items:[{
- anchor:'100%',
- layout: {
- type:'hbox',
- padding:'10',
- align:'middle',
- pack:'end'
- },
- defaults:{margins:'0 5 0 0'},
- items:[{
- xtype:'button',
- text: 'Button 1'
- },{
- xtype:'button',
- text: 'Button 2'
- },{
- xtype:'button',
- text: 'Button 3'
- },{
- xtype:'button',
- text: 'Button 4'
- }]
- }]
- })
- d2.render('d2');
- var d3 = Ext.create('Ext.Panel',{
- title:'HBox 垂直水平居中,并且所有控件高度为最高控件的高度',
- frame:true,
- width:600,
- height:100,
- items:[{
- anchor:'100%',
- layout: {
- type: 'hbox',
- padding:'5',
- align:'stretchmax',
- pack:'center'
- },
- defaults:{margins:'0 5 0 0'},
- items:[{
- xtype:'button',
- text: 'Small Size'
- },{
- xtype:'button',
- scale: 'medium',
- text: 'Medium Size'
- },{
- xtype:'button',
- scale: 'large',
- text: 'Large Size'
- }]
- }]
- })
- d3.render('d3');
- })
最后是效果图:
相关推荐
周公周金桥 2020-09-06
大象从不倒下 2020-07-31
AlisaClass 2020-07-19
MaureenChen 2020-04-21
xingguanghai 2020-03-13
teresalxm 2020-02-18
木四小哥 2013-05-14
SoShellon 2013-06-01
Simagle 2013-05-31
羽化大刀Chrome 2013-05-31
waterv 2020-01-08
LutosX 2013-07-29
vanturman 2013-06-27
wutongyuq 2013-04-12
luoqu 2013-04-10
today0 2020-09-22
89520292 2020-09-18
bigname 2020-08-25