轮播可滚动?
是否有在旋转木马中滚动图像的解决方案?可滚动,滚动,不起作用
thks ...
代码:
Ext.define('carousel.view.test', { extend: 'Ext.carousel.Carousel',
xtype:'test',
config: {
fullscreen: true,
scrollable: 'vertical,
items: [
{
xtype: 'image',
html: '<img src=./resources/images/1.png />',
scrollable: 'vertical'
},
{
xtype: 'image',
html: '<img src=./resources/images/2.png />'
}
]
}
});
编辑:
我可能找到了一个解决方案,但它适用于chrome,而不是Android或IOS,为什么?
它有效
config: {
items: [
{xtype: 'container',
scrollable: 'vertical',
directionLock:true,
items:[
{ xtype: 'image',
html: '<img src=./resources/images/1.png />'}
]
},
答案 0 :(得分:0)
scrollable : {
direction : 'both',
directionLock : true
}
答案 1 :(得分:0)
Sencha成员在他们的论坛上说,
scrollable : {
direction : 'vertical',
directionLock : true
},
忘了粘贴在这里,抱歉