底部menu

Ext.application({
	name:"iteye",
	launch:function(){
		Ext.create("Ext.tab.Panel",{
			fullscreen:true,
			tabBarPosition:'bottom',
			items:[
				{
					title:'主页',
					iconCls:'home',
					html:'Welcome'
				},
				{
					title:'消息',
					iconCls:'info',
					html:'Welcome'
				},
				{
					title:'用户',
					iconCls:'user',
					html:'Welcome'
				},
				{
					title:'设置',
					iconCls:'settings',
					html:'Welcome'
				},
				{
					title:'更多',
					iconCls:'more',
					html:'Welcome'
				}
			]
		});
	}
});

 
底部menu
 

你可能感兴趣的:(sencha,移动互联网开发,touch2,底部menu)