Sencha框架。三柱旋转木马

时间:2012-08-22 02:19:21

标签: sencha-touch extjs carousel

我是Sencha的新手。 我想制作3列垂直旋转木马。例如,TMall interface for IPad

有可能吗?

1 个答案:

答案 0 :(得分:1)

我认为这就是你想要的

{
xtype: container,
layout: 'hbox',
items: [
{
xtype: 'carousel',
direction: 'vertical',
...what the carousel should contain
},
{
xtype: 'carousel',
direction: 'vertical',
...what the carousel should contain
},
{
xtype: 'carousel',
direction: 'vertical',
...what the carousel should contain
}
]
}

希望有所帮助