Skip to content

Instantly share code, notes, and snippets.

@AlexSwensen
Created September 29, 2015 19:46
Show Gist options
  • Save AlexSwensen/5bc7803ca53c060ebafc to your computer and use it in GitHub Desktop.
Save AlexSwensen/5bc7803ca53c060ebafc to your computer and use it in GitHub Desktop.
Ionic slide box example with ng-repeat
<ion-slide-box class="has-header" active-slide="activeSlide">
<ion-slide ng-repeat="image in images">
<ion-scroll direction="xy" scrollbar-x="false" scrollbar-y="false"
zooming="true" min-zoom="{{ zoomMin }}" style="width: 100%; height: 100%"
delegate-handle="scrollHandle{{$index}}" on-scroll="updateSlideStatus(activeSlide)"
on-release="updateSlideStatus(activeSlide)">
<!-- content here -->
</ion-scroll>
</ion-slide>
</ion-slide-box>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment