Sencha Touch:FLUD 风格的多滚动面板

发布于 2024-11-05 05:02:07 字数 372 浏览 0 评论 0原文

我正在尝试通过 Sencha Touch 开发 FLUD 样式的面板列表。所有面板都可以自行滚动。以下是我想要的图像 A panel like this 灵感来自于这个 FLUD 面板:FLUD

现在,如果我只是创建一个带有溢出项目的 Ext.Panel(或者可能是一个选项卡面板)的 Ext.List,它们是否都可以被点击并且在自己内部滚动?或者你能提供一些其他的想法来实现这个吗?

I am trying to develop a FLUD style list of Panels by Sencha Touch. All the panels will be scrollable by themselves. Here are the images of what I want A panel like this inspired by a this FLUD panel : FLUD

Now, if I just create a Ext.List of Ext.Panel (or may be a Tab Panel) with overflowed items, can they all be tapped and scrolled within themselves? Or can you provide some other idea to implement this?

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

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

发布评论

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

评论(1

腹黑女流氓 2024-11-12 05:02:07

嘿,我只是为了工作而考虑这个想法。您可能已经看过这个,但如果您还没有看过,这里有一些起始代码:

new Ext.Container({
  xtype:container,
  layout:'hbox',
  scroll:'horizontal',
  items: [
    new Ext.Container({
      width:'250',
      height:'100',
      cls:'css-class-you-want-for-these-buttons',
      listeners: {
        click: {
          element: 'el',
          fn: function() {
            alert('beep')
          }
        }
      }
    }
  ]
});

然后将 10 多个这些项目转储到其中和中提琴中。只需弄清楚如何自定义滚动条(这就是我现在正在进行的部分)。祝你好运!

Hey, I was just playing with this idea for work. You've probably seen this already, but here's some starter code if you haven't:

new Ext.Container({
  xtype:container,
  layout:'hbox',
  scroll:'horizontal',
  items: [
    new Ext.Container({
      width:'250',
      height:'100',
      cls:'css-class-you-want-for-these-buttons',
      listeners: {
        click: {
          element: 'el',
          fn: function() {
            alert('beep')
          }
        }
      }
    }
  ]
});

Then dump like 10+ of those items in there and viola. Just got to figure out how to customize the scrollbar (that's the part I'm on right now). Good luck!

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