[원] 센차 터치의 패널과 타블판.
2584 단어 Sencha Touch
Panel:
Ext.application({
name:'itKingApp',
launch: function(){
var panel=Ext.create('Ext.Panel',{
fullscreen:true,
id:'myPanel',
style:'color:red',
html:' '
});
Ext.Viewport.add(panel)
// Ext.get dom
var panel_dom=Ext.get('myPanel');
// Ext.ComponentManager sencha
var panel_component=Ext.ComponentManager.get('myPanel');
// image
var img=Ext.create('Ext.Img',{
//src:'resources/images/welcome.png',//
src:'http://www.baidu.com/img/bdlogo.gif',//
width:'500px',
height:'500px'
});
var subPanel=Ext.create('Ext.Panel',{
id:'subPanel',
style:'color:green',
fullscreen:true,
html:' ',
items:[img]
});
panel_component.add(subPanel);
}
});
간단합니다. API는 다른 구성 옵션의 의미를 직접 확인할 수 있습니다. 다음은 TabPanel입니다.
Ext.application({
name : 'itKingApp',
launch : function() {
var tabPanel = Ext.create('Ext.TabPanel', {
fullscreen : true,
id : 'myPanel',
ui:'dark',
tabBarPosition : 'top',
defaults : {
styleHtmlContent : false
},
items : [{
title : ' ',
iconCls : 'home',
html : ' '
},
{
title : ' ',
iconCls : 'user',
html : ' '
},
{
title:' ',
iconCls:'locate'
},
{
title:' ',
iconCls:'add'
},
{
title:' ',
iconCls:'maps'
}
],
centered:false
});
Ext.Viewport.add(tabPanel)
}
});
유일하게 말할 수 있는 것은 iconCls입니다. 이것은senchatouch 스타일에서 자체로 가지고 있는 몇 가지 내용입니다. 그리고 몇 가지는 여러분이 관심이 있으면 직접 보셔도 됩니다. 이 두 가지는 여기까지입니다. 기본적인 용기 구성 요소입니다.
저자: jjx0224, 2013-9-23 17:17:25
텍스트 링크
보기: 208 댓글: 0
의견 보기
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
슬라이딩 지원 Sencha Touch TextArea텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.