johnsimpson
Programmer
Hi guys,
I am trying to build a page where i want the top banner and the bottom banner to change randomly on refresh of page. The trouble is the top and bottom banners are themed and so i need to somehow group them together so they change together in sets.
i got the code for randomly changing an image but how can i make it change sets of images?
here is the code im using:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
// Set up the image files to be used.
var theImages = new Array()
theImages[0] = 'images/top_banner.jpg'
theImages[1] = 'images/top_banner_2.jpg'
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
preBuffer = new Image()
preBuffer.src = theImages
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" width="800" height="151" alt="Rare IT" />');
}
// End -->
</script>
the top banners are of things like fish, fields, houses etc and the bottom banner is like a contiunation of the top banner, so the fish them will be fish for top an bottom. I need to specify two images per group and randomly load each group on refresh.
thanks
J
I am trying to build a page where i want the top banner and the bottom banner to change randomly on refresh of page. The trouble is the top and bottom banners are themed and so i need to somehow group them together so they change together in sets.
i got the code for randomly changing an image but how can i make it change sets of images?
here is the code im using:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
// Set up the image files to be used.
var theImages = new Array()
theImages[0] = 'images/top_banner.jpg'
theImages[1] = 'images/top_banner_2.jpg'
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
preBuffer = new Image()
preBuffer.src = theImages
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" width="800" height="151" alt="Rare IT" />');
}
// End -->
</script>
the top banners are of things like fish, fields, houses etc and the bottom banner is like a contiunation of the top banner, so the fish them will be fish for top an bottom. I need to specify two images per group and randomly load each group on refresh.
thanks
J