轮播可滚动?
是否有在轮播中滚动图像的解决方案?可滚动,滚动,不工作
谢谢...
代码:
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 />'}
]
},