Sure, find these two lines in the code:
Code:
tempobj.innerHTML='<img src="'+fadeimages[nextimageindex]+'">'
nextimageindex=(nextimageindex<fadeimages.length-1)? nextimageindex+1 : 0
Make them look like this:
Code:
tempobj.innerHTML='<img src="'+fadeimages[nextimageindex]+'">'
if ((nextimageindex==1)&&(a==1))
return;
if (nextimageindex==0)
a=1;
nextimageindex=(nextimageindex<fadeimages.length-1)? nextimageindex+1 : 0
and at the top add to this:
Code:
var slideshow_width='140px' //SET IMAGE WIDTH
var slideshow_height='225px' //SET IMAGE HEIGHT
var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)
like this:
Code:
var slideshow_width='140px' //SET IMAGE WIDTH
var slideshow_height='225px' //SET IMAGE HEIGHT
var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)
var a
Bookmarks