I'm trying to create side menu with additional animation for inner arrow element:
https://stackblitz.com/edit/angular5-menu-animation
In this realization animations are working in the next order:
- Menu is opening
- Arrow is rotating
But I want to start this 2 animations at the same time. It works good in Angular 4.4.x but not working in 5.2.x.
Need some help with this issue.
You can check my working fork here.
You have to add the group function so that the steps are executed in parallel instead of in sequence as sequence is taken by default.
If you check the docs on sequence, it is said that;