1

私は煎茶の初心者です。3列の垂直カルーセルを作成したいと思います。たとえば、iPad用のTMallインターフェース

出来ますか?

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 に答える