I have created a custom gallery and now I would like to apply titration on the wrapper in order to display a different image on each div. Currently, my code is repeating a single image throughout the entire gallery.
HTML
<div class="wrapper" *ngFor="let data of collection" >
<div class="row mt-5 paddingP">
<div class="col-4 top3images " >
<img class="top3"
src={{data.completeIamgepath}}
alt="">
<button class="icon"><i class="fa fa-bookmark-o" aria-hidden="true"></i> </button>
<label class="label">207 Products</label>
</div>
<div class="col-4 top3images">
<img class="top3 " src={{data.completeIamgepath}} alt="">
<button class="button"> Save </button>
<label class="label">207 Products</label>
</div>
<div class="col-4 top3images">
<img class="top3 "
src={{data.completeIamgepath}}
alt="">
<button class="icon"><i class="fa fa-bookmark-o" aria-hidden="true"></i> </button>
<label class="label">207 Products</label>
</div>
</div>
<div class="wrapper paddingrightleft secondrowmargintop ">
<div class="row paddingR">
<div class="col-7">
<div class="row">
<div class="col-12 padding0 ">
<img class="imgs2ndrow"
src={{data.completeIamgepath}}
alt="">
<button class="button"> Save </button>
<label class="label">107 Products</label>
</div>
</div>