mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
20 lines
357 B
HTML
20 lines
357 B
HTML
<ion-slides loop="true" id="loopSlider" (slideChanged)="onSlideChanged($event)" pager>
|
|
<ion-slide *ngFor="#slide of slides" [ngClass]="slide.class">
|
|
{{ slide.name }}
|
|
</ion-slide>
|
|
</ion-slides>
|
|
|
|
<style>
|
|
.yellow {
|
|
background-color: #fbeb14;
|
|
}
|
|
|
|
.red {
|
|
background-color: #ED4337;
|
|
}
|
|
|
|
.blue {
|
|
background-color: #89cff0;
|
|
}
|
|
</style>
|