An AngularJS carousel implementation optimised for mobile devices.
Demo : http://revolunet.github.io/angular-carousel
Comments and contributions welcome :)
Proudly brought to you by the @revolunet team.
- If you use bower, just
bower install angular-carousel
. If not, download files from the github repo - Add
angular-touch.js
,angular-carousel.css
, andangular-carousel.js
to your code:
<link href="angular-carousel.css" rel="stylesheet" type="text/css" />
<script src="angular.js"></script>
<script src="angular-touch.js"></script>
<script src="angular-carousel.js"></script>
- Add a dependency to the
angular-carousel
module in your application.
angular.module('MyApp', ['angular-carousel']);
- Add a
rn-carousel
attribute to your<ul>
block and your<li>
's become magically swipable ;)
<ul rn-carousel class="image">
<li ng-repeat="image in sportImages">
<div class="layer">{{ image }}</div>
</li>
</ul>
- You can also use
rn-carousel
without ng-repeat ;)
<ul rn-carousel class="image">
<li>slide #1</li>
<li>slide #2</li>
<li>slide #3</li>
</ul>
rn-carousel-index
two way binding integer to control the carousel position (0-indexed)rn-carousel-buffered
add this attribute to enable the carousel buffering, good to minimize the DOM (5 slides)rn-carousel-controls
add this attribute to enable builtin prev/next buttons (you can override by CSS)rn-carousel-auto-slide
add this attribute to make the carousel slide automatically after given seconds (default=3)rn-carousel-transition
: transition type, can be one ofslide, zoom, hexagon, fadeAndSlide, none
. (default=slide)rn-carousel-locked
: two way binding boolean that lock/unlock the carouselrn-carousel-deep-watch
: Deep watch the collection which enable to dynamically add slides at beginning without corrupting position
You can add position indicators by adding this directive where you want :
<div rn-carousel-indicators ng-if="slides.length > 1" slides="slides" rn-carousel-index="carouselIndex"></div>
slides
is the same collection you use in the carousel ng-repeatcarouselIndex
is the same index you've defined for the carousel
- if you use IE<=9, iOS<7 or Android<4 please include the requestAnimationFrame polyfill in your application.
- if you use IE<=8 include the es5-shim polyfill in your application.
- don't set any style attribute to your li's. they would be overwritten by the carousel (use classes instead).
- angular-carousel use the great shifty.js for the animations
- disable autoslide on hover
- delay autoslide on indicators click/move
- customisable transitions
- more transition types
- infinite loop support
- Please follow AngularJS GIT conventions
- Please add tests
- Please update the README and demo (index.html)
- https://github.com/ajoslin/angular-mobile-nav
- http://mobile.smashingmagazine.com/2012/06/21/play-with-hardware-accelerated-css/
- http://ariya.ofilabs.com/2013/08/javascript-kinetic-scrolling-part-1.html
- Thanks to all angular folks for all the tips :)
As AngularJS itself, this module is released under the permissive MIT license. Your contributions are always welcome.