mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
16 lines
419 B
HTML
16 lines
419 B
HTML
<ion-slides #slides>
|
|
<ion-slide style="background-color: blue">
|
|
<h2>Page 1</h2>
|
|
</ion-slide>
|
|
<ion-slide style="background-color: yellow">
|
|
<h2>Page 2</h2>
|
|
</ion-slide>
|
|
<ion-pager>
|
|
</ion-pager>
|
|
</ion-slides>
|
|
|
|
<div style="position: absolute; bottom: 10px; left: 0; width: 100%; text-align: center">
|
|
<button (click)="slides.prev()">Prev</button>
|
|
<button (click)="slides.next()">Next</button>
|
|
</div>
|