1

我是 Sencha 的新手。我想制作 3 列垂直轮播。比如iPad的天猫界面

是否可以?

4

1 回答 1

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
}
]
}

希望能帮助到你

于 2012-12-22T07:50:25.280 回答