Created
September 29, 2015 19:46
-
-
Save AlexSwensen/5bc7803ca53c060ebafc to your computer and use it in GitHub Desktop.
Ionic slide box example with ng-repeat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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