jQuery 3D Carousel

Download
Why another carousel plug-in?

After lots of digging and research, all the plug-ins we could find only support images. With the need to have any HTML we wanted spinning happily in the carousel, we created our own plug-in.

Examples & Sample Code

.

The HTML for the above is rather simple, and works like other jQuery plug-ins.

<div id="carousel01" style="height:200px;">
<div>
Some Text for the first item
</div>
<div>
Some Text for the second item
</div>
</div>

Example java script, with all options defined.

$('#carousel01').carousel({
frameRate: 25,
rotationsPerSecond: 0.1,
inertia: 0.5
});