The script is very flexible with many documented properties that act as options for how any given slide show will present itself.
However, I'm not aware of any, or any combination of them that would do just what you are asking, and I wrote the script.
Still, with additional code, and/or clever styling, and/or rewriting sections of the script - it could be done.
Working from the 1st demo slide show, I got pretty good results like so:
Code:
var slides=[]; //FIRST SLIDESHOW
//configure the below images and descriptions to your own.
slides[0] = ["photo1.jpg", "Kissing Fools"];
slides[1] = ["photo2.jpg", "Seated Woman"];
slides[2] = ["photo3.jpg", "The Dog Lovers"];
slides[3] = ["photo4.jpg", "Standing Woman"];
slides[4] = ["photo5.jpg", "John, Mary and Jesus - Will this wrap?"];
//optional properties for these images:
slides.no_added_linebreaks=1; //use for no added line breaks in formatting of texts and controls
slides.counter=1; //use to show image count
slides.no_auto=1; //use to make show completely user operated (no play button, starts in stopped mode)
Then in the body:
Code:
<div id="show1"><script type="text/javascript">
//Notes on Parameters: The only required parameter is the slides_array_name. If Width is used, so must Height.
//Interval is optional too. It is always last, either fourth after Width and Height or second after Slides_array_name.
//Usage: new inter_slide(Slides_array_name, Width, Height, Interval)
new inter_slide(slides)
</script></div>
Which then allowed for these styles in the head:
Code:
<style type="text/css">
/* All Styles Optional */
#show1 input {
margin:0 4.5em;
position:relative;
top:-1.5em;
}
</style>
which separated the control input buttons (put more space between them) and raised them up to the level of the counter. You may want to change the exact dimensions to suit. Other modifications may be made in any or all of the areas already mentioned.
Bookmarks