Go into the dropinslideshow.js file with notepad or another text only editor and edit the lines (red in the below) as indicated/desired:
Code:
function dropinslideshow(imgarray, w, h, delay){
this.id="_dropslide"+(++_dropinslideshowcount) //Generate unique ID for this slideshow instance (automated)
this.createcontainer(parseInt(w), parseInt(h))
this.delay=delay
this.imgarray=imgarray
var preloadimages=[]
for (var i=0; i<imgarray.length; i++){
preloadimages[i]=new Image()
preloadimages[i].src=imgarray[i][0]
}
this.animatestartpos=parseInt(h)*(-1) //Starting "top" position of an image before it drops in
this.slidedegree=10 //Slide degree (> is faster)
this.slidedelay=30 //Delay between slide animation (< is faster)
this.activecanvasindex=0 //Current "active" canvas- Two canvas DIVs in total
this.curimageindex=0
this.zindex=100
this.isMouseover=0
this.init()
}
Let me clarify, just in case:
Code:
this.slidedegree=10 //Slide degree increment size (a larger number is faster, a smaller number is slower)
this.slidedelay=30 //Delay between slide animation increments (a smaller number is faster, a larger number is slower)
Bookmarks