我正在使用 sencha Touch 应用程序。
我已经将 ext.carousel 组件用于不同的 View 。
实际上,我想在传送带内显示我的上一个和下一个项目卡 的 部分。
苹果应用商店 相同,如下所示,

谁能建议我如何处理我的轮播 View ?
任何替代解决方案也是可以接受的。

任何帮助将不胜感激。

最佳答案

为 Carousel 设置 itemLength .. 就是这样。

Ext.create('Ext.Carousel', {
            fullscreen: true,
             itemLength: 250, // change value as you want
            defaults: {
                styleHtmlContent: true
            },
            items: [
                {
                    html: 'red',
                    style: 'background-color:#f00;'
                }, {
                    html: 'orange',
                    style: 'background-color:#ffb600;'
                }, {
                    html: 'yellow',
                    style: 'background-color:#ff0;'
                }, {
                    html: 'green',
                    style: 'background-color:#80ff4d;'
                }, {
                    html: 'blue',
                    style: 'background-color:#009dff;'
                }
            ]
        });

关于extjs - 在 Sencha touch 中创建与 Apple App Store 相同的 Carousel View,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17647122/

10-15 15:47