I want to show part of the second slide item, but don't know how to do it. This is what I have so far (basic Ionic slides):
<ion-slides pager >
<ion-slide>
<h2>Slide 1</h2>
</ion-slide>
<ion-slide>
<h2>Slide 2</h2>
</ion-slide>
<ion-slide>
<h2>Slide 3</h2>
</ion-slide>
</ion-slides>
and this is how I want it to be:
I've tried to change the width of the ion-slide to less than 100%, but the second and third slides just gets moved further to left, out of the screen.
Can anyone help me ?