Hi Arie:
I might not be able to fulfill all of you (and Ellen's) requests, but I can take a stab at a few of them as time permits and order of difficulty.
1) With regards to removing the layer's black background, the background is only shown if one of the images doesn't fit the parent container snuggly, as you probably know already. So the real issue is how to get the image to do that without distorting the image's original aspect ratio. It'd be easy if there were no constraints on the ratio- just set both the image's width and height to 100%. The Guide to Responsive Gallery talks about a few solutions to achieving what you want, with different compromises. Now, if you don't fancy the "black" color of the background, just do a search and replace inside .js file, and change "black" to say "white", or "transparent".
2) Creating a play/pause button shouldn't be too hard. With the attached modified .js file, you can now add a play button like so (in red):
Code:
<div id="fadeshow4toggler" style="width:50%; text-align:center; margin-top:10px">
<a href="#" class="prev"><img src="http://www.dynamicdrive.com/dynamicindex14/left.png" style="border-width:0" /></a> <span class="status" style="margin:0 50px; font-weight:bold"></span> <a href="#" class="next"><img src="http://www.dynamicdrive.com/dynamicindex14/right.png" style="border-width:0" /></a>
<img class="playpause" src="play.png" data-pause="pause.png" />
</div>
Change the src and data-pause attribute to the images for the desired play and pause button.
Bookmarks