多个项目煎茶旋转木马

发布于 2024-12-15 05:38:23 字数 319 浏览 1 评论 0原文

嗨,

我无法用我的旋转木马到达我想要的地方。这是针对 iPhone / iPad 网络应用程序的。

基本上我想在轮播中显示我的上一个和下一个项目卡的一部分。因为一张图片胜过一千个文字,这是我想要获得的最终视图:

final

与 appStore 预览屏幕截图相同一个应用程序的。

我已经尝试了很多事情,但到目前为止没有任何效果。

任何提示都会很棒:) 谢谢!

Hi,

I could not manage to get where i want with my carousel. This is for an iPhone / iPad web App.

Basically i want to show part of my previous and next item card inside the carousel. Because a picture is worth a thousand words here is the final view i want to obtain :

final

Same as in the appStore preview screenshots of an app.

I have tried many things but nothing have work so far.

Any tips would be great :) Thank you !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

平定天下 2024-12-22 05:38:23

如果您要将轮播页面 3“推”到一页上,并且间距(边距或填充)较高以创建效果,那么这绝对是可能的。

在这个阶段,还没有多项目(在一页上)轮播的公开示例,但这是可能的,我目前正在研究多项目轮播。我添加了边距和填充,以在一页上实现 15 个缩略图。

:-)

This would definitely be possible, if you were to 'push' the carousel pages 3 onto one page, with spacing (margin or padding) up high to create the effect.

At this stage there are no public examples of multi item (on one page) carousels, but it is possible and I am currently working on a multi item carousel. I added margin and padding to achieve 15 thumbnails on 1 page.

:-)

梦里°也失望 2024-12-22 05:38:23

有一个 coverflow 插件不完全相同但相似。在此处查看演示:

http://twomonkeys.com.ar/lab/cover/

可以在这里获取源代码:

https://github.com/elmasse/Ext.ux.Cover< /a>

There is a coverflow plugin available not exactly same but similar. Check the demo here:

http://twomonkeys.com.ar/lab/cover/

You can get the source code here:

https://github.com/elmasse/Ext.ux.Cover

我们只是彼此的过ke 2024-12-22 05:38:23

您可以使用设置 Carousel 的 itemLength 属性,

Ext.create('Ext.Carousel', {
        fullscreen: true,
         itemLength: 250, // **you can change value as you want**
        defaults: {
            styleHtmlContent: true
        }, 
        items: [
            {
                html: 'item1',
                style: 'background-color:red;'
            }, {
                html: 'item2',
                style: 'background-color:white;'
            }, {
                html: 'item3',
                style: 'background-color:gray;'
            }, {
                html: 'item4',
                style: 'background-color:blue;'
            }, {
                html: 'item5',
                style: 'background-color:yellow;'
            }
        ] 
    }); 

you can use set itemLength property of Carousel,

Ext.create('Ext.Carousel', {
        fullscreen: true,
         itemLength: 250, // **you can change value as you want**
        defaults: {
            styleHtmlContent: true
        }, 
        items: [
            {
                html: 'item1',
                style: 'background-color:red;'
            }, {
                html: 'item2',
                style: 'background-color:white;'
            }, {
                html: 'item3',
                style: 'background-color:gray;'
            }, {
                html: 'item4',
                style: 'background-color:blue;'
            }, {
                html: 'item5',
                style: 'background-color:yellow;'
            }
        ] 
    }); 
遇到 2024-12-22 05:38:23

请参阅此博客文章,他们对此进行了解释:

http ://www.sencha.com/blog/using-the-leap-motion-controller-with-sencha-touch/

他们在代码中使用了这个:

itemLength: browserWidth * 0.8.

See this blog post where they explain it:

http://www.sencha.com/blog/using-the-leap-motion-controller-with-sencha-touch/

They used this in their code:

itemLength: browserWidth * 0.8.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文