我创建了一个包含几个组合框的搜索,允许用户过滤搜索结果。
结果目前正在使用TileList&要显示的itemRenderer,现在我想在用户过滤结果时添加动画效果。
我知道当用户拖动并移动结果主题时,您可以使用itemsChangeEffect来创建动画效果。
所以我想知道是否有办法通过对组合框进行过滤来触发相似的效果?
感谢。
答案 0 :(得分:0)
我最后说了一句话。
通过使用两种状态,我能够实现我想要的外观。刚刚在Transitions中使用了一些简单的if语句和状态更改。
if (this.currentState == 's1'){
this.currentState = 's2';
} else if (this.currentState == 's2'){
this.currentState = 's1';
}
acData.refresh();