Random pictures
 
07/10/2005 - 21:30 (Category: Javascript)

This script is helpful to produce random images in your web page.

The script consists of two parts: the first one within the <head> section, and the other one within the <body> section.

This script is compatible with Internet Explorer, Netscape 6, Mozilla, Safari, Opera.



Part one within the <head> section of your page:


<script language="JavaScript" type="text/JavaScript">
<!--
function image() {
};

image = new image();
number = 0;
// imageArray
image[number++] = "<img src='http://www.wowarea.com/picture_1.jpg'>"
image[number++] = "<img src='picture_2.jpg'>"
image[number++] = "<img src='picture_3.jpg'>"
// Add here other pictures ....
increment = Math.floor(Math.random() * number);
// -->
</script>




Part two within the <body> section of your page (where you want the image to be displayed):


<script language="JavaScript" type="text/JavaScript">
document.write(image[increment]);
</script>




The image() object is an array containing the picture links of your web site.

Thanks to the random() method, random pictures will be available (by getting them from the image() object).

The document.write method displays the chosen picture in your web page.



Go back

DISCLAIMER:
Any named products on this website are copyright © and/or trademarks ® of their respective companies. INFORMATION ON THIS WEB SITE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. The material included in this site has been compiled from a variety of sources and the site may include technical inaccuracies or typographical errors. Information may be changed or updated without notice. While every effort is made to ensure the correctness of the information provided here, the author can accept no responsibility for damages caused directly or indirectly from the use of such information. The author will not be responsible for damage or loss of data. You are advised to backup data regularly! By entering this site you are agreeing to this and also to never suing the author.

 

Home  About  Mail us!  

Copyright © 1998-2006 Wowarea