This Coverflow project seeks to create a fully functional 'CoverFlow' effect using a combination of jQuery, jQuery UI components and CSS3 transforms.
select( {Number} index/{jQuery} item ):
Returns a boolean (selection success). Pass an item index (zero based) or any valid jQuery coverflow item. So these expressions are equivalent:
$('#coverflow' ).coverflow( 'select', 2 );
var el = $('#coverflow' ); el.coverflow( 'select', el.children().eq(2) ) );
next()
$('#coverflow' ).coverflow( 'next' );
Returns a boolean (selection success). Selects next/previous item.
prev()
$('#coverflow' ).coverflow( 'prev' );
Returns a boolean (selection success). Selects next/previous item.