sencha touch 2学習ノート(五)----carouselスライド可能
1074 ワード
CarouselはandroidのView Flipperのようにスライド可能なコンポーネントです.ただ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"
}
]
}
)
}
}
)