snaich
12-13-2011, 07:27 AM
Background Image Slideshow
......................................
<script language="JavaScript1.2">
//Background Image Slideshow- © Dynamic Drive (www.dynamicdrive.com)
//For full source code, 100's more DHTML scripts, and TOS,
//visit http://www.dynamicdrive.com
//Specify background images to slide
var bgslides=new Array()
bgslides[0]="bgslide01.jpg"
bgslides[1]="bgslide02.jpg"
bgslides[2]="bgslide03.jpg"
//Specify interval between slide (in miliseconds)
var speed=5000
//preload images
var processed=new Array()
for (i=0;i<bgslides.length;i++){
processed[i]=new Image()
processed[i].src=bgslides[i]
}
var inc=-1
function slideback(){
if (inc<bgslides.length-1)
inc++
else
inc=0
document.body.background=processed[inc].src
}
if (document.all||document.getElementById)
window.onload=new Function('setInterval("slideback()",speed)')
</script>
......................................
hi, i found this script and would like to use it -
when i load the site there is no picture -
it takes too much time before the slideshow starts.
is it possible to delete the preload time ?
(all pictures are still preloaded on the site before)
......................................
<script language="JavaScript1.2">
//Background Image Slideshow- © Dynamic Drive (www.dynamicdrive.com)
//For full source code, 100's more DHTML scripts, and TOS,
//visit http://www.dynamicdrive.com
//Specify background images to slide
var bgslides=new Array()
bgslides[0]="bgslide01.jpg"
bgslides[1]="bgslide02.jpg"
bgslides[2]="bgslide03.jpg"
//Specify interval between slide (in miliseconds)
var speed=5000
//preload images
var processed=new Array()
for (i=0;i<bgslides.length;i++){
processed[i]=new Image()
processed[i].src=bgslides[i]
}
var inc=-1
function slideback(){
if (inc<bgslides.length-1)
inc++
else
inc=0
document.body.background=processed[inc].src
}
if (document.all||document.getElementById)
window.onload=new Function('setInterval("slideback()",speed)')
</script>
......................................
hi, i found this script and would like to use it -
when i load the site there is no picture -
it takes too much time before the slideshow starts.
is it possible to delete the preload time ?
(all pictures are still preloaded on the site before)