The jQuery plugin Cycle can do this if you specify elements (like the arrow images) for the next
and prev
option settings.
Someone else that asked a question recently was achieved a similar effect on their site (which you can see by following the link in their question) with EasySlider 1.7.
As far as occupying the entire window, you can see in Firebug that the sample site has bound a function to window.resize
, refigure()
, which sets the height and width of each frame to the size of the window. Translating that to jQuery should be possible - perhaps something like this:
$(document).ready(function() {
$(window).resize(refigure());
});
and
function refigure() {
$('.frame').height($(window).height);
$('.frame').width($(window).width);
}
The original code's refigure
method is setting the dimensions of several additional elements - I think to accommodate the particular requirements of that page and possibly the code module performing the transition animations.