Installation

Simple as each other jQuery plugin: in your head tag just include a reference to jQuery (version 1.3.2+) and to jquery.showcase.X.js

<script type="text/javascript" src="lib/jquery/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="lib/jquery.showcase.2.0.js"></script>

Your code to start the showcase must be included into dom-ready function:

$(function() {
    // place your code here, something like
    $("#idOfContainer").showcase({ ... parameters ... });
});

That's all to start!

Option parameters

There are a lot of parameters to configure the showcase, but no one is obligatory (really, just one: 'images', but only if you want to use the new way to define the imagelist).

Parameters are defined by a single javascript object, wich is structured as:

Methods

Once showcase is started (setted with animation->autocycle : true) you can pause and resume the slider simply calling the methods .pause() and .go() on the showcase container.

// Initialize showcase
$("#idOfContainer").showcase({ ... parameters, autoCycle:true ... });
 
// Pause the slider
$("#idOfContainer").pause();
 
// Resume the slider from where it was paused
$("#idOfContainer").go();
CodeCanyon