Skip to content

Instantly share code, notes, and snippets.

@aarjithn
Created June 26, 2016 18:30
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aarjithn/06ebab4d19c8eea4d002c577d05d2ed5 to your computer and use it in GitHub Desktop.
Save aarjithn/06ebab4d19c8eea4d002c577d05d2ed5 to your computer and use it in GitHub Desktop.
Swiper Card Carousel in Ionic
controller('SwiperCtrl', function($scope, $stateParams) {
$scope.options = {
// loop: false,
// grabCursor: true,
// paginationHide: false,
// paginationClickable: false,
// direction: 'vertical',
// spaceBetween: 50,
effect: 'coverflow',
speed: 100,
// initialSlide: 1
centeredSlides: true,
slidesPerView: 'auto',
coverflow: {
rotate: 45,
stretch: 0,
depth: 80,
modifier: 1,
slideShadows : true
}
}
})
.swiper-container {
width: 100%;
padding-top: 50px;
padding-bottom: 50px;
}
.swiper-container {
margin-top: 30px;
}
.swiper-slide {
background-position: center;
background-size: cover;
width: 85vw;
height: 72vh;
}
.box {
height: 100%;
border-radius: 10px;
padding: 20px;
}
<ion-view view-title="Swiper">
<ion-content scroll="false">
<ion-slides class="horizontal" options="options" slider="data.slider">
<ion-slide-page>
<div class="box"><h1>Content 1</h1></div>
</ion-slide-page>
<ion-slide-page>
<div class="box"><h1>Content 2</h1></div>
</ion-slide-page>
<ion-slide-page>
<div class="box"><h1>Content 3</h1></div>
</ion-slide-page>
</ion-slides>
</ion-content>
</ion-view>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment