I have the carousel effect working, but I don't know how to make the text and images move at different speeds as shown in this banner for IBM:
http://www.ibm.com/us/en/
Here's my jQuery:
$.fn.zinCarousel = function(settings) {
var settings = $.extend({}, $.fn.zinCarousel.defaultSettings, settings || {});
return this.each(function() {
var o = $.extend(true, {}, settings),
$elem = $(this),
caro = new Carousel(o, $elem);
caro.init();
});
};
jsFiddle Demo (Remove /show/
from URL to access edit page).