Files
2015-08-11 22:51:17 -05:00

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>