OK, to achieve that effect using this script, the most straightforward method would be to utilize its multiple slideshows on a page option.
Following the instructions, setup one 'show' for each drop cap or illustration sequence you will be using. Then, where you want each one to appear on the page, use a separate script block to call each one. Instead of:
Code:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
</script>
as shown on the demo page, you can use several of these blocks, each with just one show called (and they can each be simplified a bit, this first one could be a drop cap letter o):
Code:
<table><tr><td><script type="text/javascript">
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
</script></td><td>nce upon a time . . .</td></tr></table>
Relatively positioned containers within the table cells could tweak the exact alignment. Or many other layout schemes (including ones without tables) could be used to get the presentational alignment that you want. Another instance of the script could be used for another drop cap later on in the page (this one could be the letter a):
Code:
<table><tr><td><script type="text/javascript">
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
</script></td><td>s our heroes neared the castle . . .</td></tr></table>
and on and on.
Bookmarks