2
我正在使用ionic2。我有一個數組product
。我使用網格視圖顯示產品。如何使用* ngFor與ionic2添加第n個孩子班,angular2
<ion-row *ngFor="let i of rows" #myElem>
<ion-col class="productlist" col-6 *ngFor="let p of product | slice:(i*2):(i+1)*2" (click)="nav(p.details.id)" >
<div class="product-image">
<img src="{{p.details.P_IMAGES[0].URL}}" alt="Product 1">
</div>
<div class="product-blk">
<div class="product-title">{{p.details.P_TITLE}}</div>
<div class="product-price">
<img src="./assets/images/rupee-yellow.svg" alt="Rupee">{{p.details.PRICE_SALE}}
<span>{{p.details.PRICE_REGULAR}}</span>
</div>
<div class="product-desc">
{{p.Desc}}
</div>
</div>
</ion-col>
</ion-row>
這裏是我的CSS:
.productlist {
animation: FadeIn 1s linear;
animation-fill-mode: both;
animation-delay: .5s
}
@keyframes FadeIn {
0% {
opacity: 0;
transform: scale(.1);
}
85% {
opacity: 1;
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
它完美,但我需要設置每個網格動畫延遲;我需要像這樣的自定義CSS類:
.productlist:nth-child(1),.productlist:nth-child(2),..
我該怎麼做?
感謝烏爾reply.I嘗試,但不。WRK :( –
不會造成錯誤 – Duannx
Ⅰ號沒」 T得到了錯誤消息,但沒有changes.I只需添加 下來投票 接受 您在SCSS需要一個for循環: @ for $ i from 1 to 4 { .productlist:n-child(#{$ i}){ animation-delay:$ i * 1000; } }。 –