-1

轮播可滚动?

是否有在轮播中滚动图像的解决方案?可滚动,滚动,不工作

谢谢...

代码:

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 />'}
                ]                            
            },
4

2 回答 2

0

根据 sencha 成员在其论坛上的说法,

scrollable : {
    direction     : 'vertical',
    directionLock : true
},

忘记贴这里了,不好意思

于 2012-10-03T21:07:28.113 回答
0
scrollable : {
     direction : 'both',
     directionLock : true
}
于 2012-10-02T19:17:25.740 回答