Can ng-enter-stagger be used in ionic2?

can ng-enter ng-enter-stagger be used in ionic2?
if not, how to define the sequence?

ATM, ng2 animations are not available for use. So things like ng-enter or ng-enter-stagger aren’t available.

then how to define css animation sequence in ionic 2

1 Like

mhartington. Can u please tell how we can can define css animation sequence. I actually want to implement following code, which was there in ionic1

.chat-item.ng-enter {
-webkit-animation: fadeInLeft 1s;
animation: fadeInLeft 1s;
}

.chat-item.ng-enter-stagger {
-webkit-animation-delay:200ms;
animation-delay:200ms;

/* override to make sure it’s not inherited from other styles */
-webkit-animation-duration:0;
animation-duration:0;
}

Please help

i also want this to be implemented.