搜索结果过滤效果 - Flex

发布于 2024-08-24 22:23:08 字数 212 浏览 6 评论 0原文

我创建了一个带有几个组合框的搜索,允许用户过滤他们的搜索结果。

结果目前使用的是 TileList & itemRenderer 来显示,现在我想在用户过滤结果时添加动画效果。

我知道您可以使用 itemsChangeEffect 在用户拖动和移动结果项时创建动画效果。

所以我想知道是否有办法创建由组合框上的过滤触发的类似效果?

谢谢。

I've created a search with a couple of comboboxes that allow users to filter their search results.

The results are currently using a TileList & itemRenderer to display, and now I'd like to add an animation effect when the user filters their results.

I know that you can use the itemsChangeEffect to create an animation effect when the user drags and moves result itmes.

So I'd like to know if there's a way to create a similar effect triggered by the filtering on the comboboxes?

Thanks.

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

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

发布评论

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

评论(1

像极了他 2024-08-31 22:23:08

我最后说了一点。

通过使用两种状态,我能够实现我想要的外观。只需使用一些简单的 if 语句和状态随转换而变化。

            if (this.currentState == 's1'){
                this.currentState = 's2';
            } else if (this.currentState == 's2'){
                this.currentState = 's1';
            }
            acData.refresh();

I Ended up with a bit a word around.

By using two states I was able to achieve the look I wanted. Just used some simple if statements and state changes with Transitions.

            if (this.currentState == 's1'){
                this.currentState = 's2';
            } else if (this.currentState == 's2'){
                this.currentState = 's1';
            }
            acData.refresh();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文