image carousel demo
for component:
$ component install ramitos/carousel
var carousel = require('carousel');
var cats = carousel(document.getElementById('carousel-container'));
setInterval(function () {
var height = Math.floor(Math.random() * 500) + 100;
var width = Math.floor(Math.random() * 500) + 100;
var url = "http://placekitten.com/g/" + width + "/" + height;
carousel.add(url);
}, 1000)
add an image url to the carousel
retrieve the selected image position
disable all carousel controls
enable all carousel controls
MIT