天天看點

sencha touch2學習筆記(五)----Carousel 可滑動換頁

Carousel是一個可以滑動的元件,就如android的ViewFlipper。隻是Carousel更好看。

代碼如下:

Ext.application(
{
	name:"sencha",
	launch:function()
	{
		
		Ext.create(
		"Ext.Carousel",
		{
			fullscreen:true,
			direction: 'vertical',
			defaults: {
		        styleHtmlContent: true
		    },
			items:[
			{
				xtype:"list",
				items:[
				{
					xtype:"toolbar",
					dock:"top",
					title:"清單哦"
				}
				],
				store:
				{
					fields:["name"],
					data:[
					{name:"陳乃共"}
					]
				},
				itemTpl:'name'
				
			},
			{
				html:"html1",
				style:"background-color:#00FF00"
			},
			{
				html:"html1",
				style:"background-color:#0000FF"
			}
			]
		}
		)
		
	}
}
)
           

繼續閱讀