OK, a few changes -
Add this style to your stylesheet:
Code:
#fadeshow1, #fadeshow1 .gallerylayer {background-color:transparent!important;}
Edit the fadeslideshow.js file around line 154:
Code:
setting.$gallerylayers.eq(setting.fglayer).css({zIndex:999}) //foreground layer becomes background
to look like so:
Code:
setting.$gallerylayers.eq(setting.fglayer).css({zIndex: 999, opacity: 0}) //foreground layer becomes background
Increase the height of the show by 1 (from the on page initialization):
Code:
<script type="text/javascript">
var mygallery2=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [460, 377], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://www.engagedesign.com/images/headshots/corporate/corporate_headshots_richelle8592.jpg", "", "", ""],
["images/headshots/corporate/corporate_headshots_0194.jpg", "", "", ""],
["http://i30.tinypic.com/531q3n.jpg"],
["http://i31.tinypic.com/119w28m.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--no trailing comma after very last image element!
],
displaymode: {type:'manual', pause:2500, cycles:0, wraparound:true},
persist: true, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "always",
togglerid: "fadeshow1toggler"/*,
onslide: function(a, b){this.setting.$gallerylayers.eq(this.setting.fglayer? 0 : 1).animate({opacity: 0});}*/
})
</script>
Other tweaks my become desirable, but for now this looks pretty good in a local mock up.
Bookmarks