Angular 5 Stagger动画 - 如何进行逆序

时间:2018-01-19 05:28:53

标签: angular angular5 angular-animations

在使用Angular CDK并开发自定义组件时,我尝试使用ngIfngFor实现交错动画。 动画是一系列简单的淡入淡出。

以下简化的HTML:

<button (click)="visible = !visible">Toggle</button>
<div class="parent" @parentAnimation *ngIf="visible">
  <p class="child">Child 1</p>
  <p class="child">Child 2</p>
  <p class="child">Child 3</p>
</div>

和组件:

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ],
  animations: [
        trigger('parentAnimation', [
            transition('void => *', [
                query('.child', style({opacity: 0})),
                query('.child', stagger('500ms', [
                    animate('100ms .1s ease-out', style({opacity: 1}))
                ]))
            ]),
            transition('* => void', [
                query('.child', style({opacity: 1})),
                query('.child', stagger('500ms', [
                    animate('100ms .1s ease-out', style({opacity: 0}))
                ]))
            ])
        ])
    ]
})
export class AppComponent  {
   visible = false;
}

StackBlitz - https://stackblitz.com/edit/angular-5dj532

从上面的链接可以看出,问题是当隐藏元素时,需要颠倒顺序(LIFO)。

查看staggerquery文档,我找不到内置的方法来撤消订单。

使用角度动画有没有正确的方法来实现它?

1 个答案:

答案 0 :(得分:11)

对第二个错位使用负时间:

....
query('.child', stagger('-500ms', [....
...

Demo