bougarfaoui / ui-carousel

🎨 Angular carousel Component 🔥
https://bougarfaoui.github.io/ui-carousel/
MIT License
79 stars 53 forks source link

How auto play it in loop? #28

Open manoharGavit opened 5 years ago

manoharGavit commented 5 years ago
<ui-carousel class="wrapper" [infinite]="true" [fade]="false" [speed]="200">

      <div *ngFor="let img of sliderImageAry">
        <ui-carousel-item>
            <img src="{{uploadPath}}/{{img.file_name}}" draggable="false"> 
        </ui-carousel-item>
      </div>

</ui-carousel>

When i use loop. it's goes to last position and stop. please help me to solve.