3
* ngFor의 각 항목을 차례로 지연시킬 수 있습니까?각 항목을 지연시키는 방법 항목 애니메이션
나는 이런 식으로 뭔가 의미 :
<li *ngFor="let item of items"> //end result like below:
<a [@flyIn]="'in'">first item</a> // delay 100ms and animate
<a [@flyIn]="'in'">first item</a> // delay 200ms and animate
<a [@flyIn]="'in'">first item</a> // delay 300ms and animate
<a [@flyIn]="'in'">first item</a> // delay 400ms and animate
<a [@flyIn]="'in'">first item</a> // delay 500ms and animate
</li>
내가 어떤 간격으로 항목 배열에 항목을 추가 할 필요가 아니면 몇 가지 더 간단 방법이 있습니까?
같은 아마 뭔가 http://stackoverflow.com/questions/39762304/angular-2-loop -through-a-list-with-some-delay/39763030 # 39763030 –
같은 간단한 작업에 약간 복잡해 보이지만 감사합니다,이 접근 방식으로 시도해 보겠습니다. –
다음과 같은 창 속성에서 설정하려고합니다. 이 질문에 : http : // st ackoverflow.com/questions/40145581/angular-2-pass-delay-to-component-animation-as-input-parameter – user3567879