Div Roller : jQuery plugin for rotating html div elements(ilkinbalkanay.blogspot.com)
ilkinbalkanay.blogspot.com
Div Roller : jQuery plugin for rotating html div elements
http://ilkinbalkanay.blogspot.com/2009/08/div-roller-jquery-plugin-for-rotating.html
jQuery.fn.divroller = function(options) { settings = jQuery.extend( { visible : 3, pause : 3000 }, options);
start(settings, this);
function start(settings, container) { var divs = container.children(); //hide unvisible divs while (settings.visible < divs.length) { var removedDiv = $(divs[divs.length - 1]).remove(); hiddenDivs.push(removedDiv); divs = container.children(); }