WebDevelopersNotes logo

home-icon Home / JavaScript / Random Image Display Using JavaScript

Random Image Display Using JavaScript

Random Image Display Using JavaScript

The steps involved in randomly displaying an image from a set are very similar to those used for displaying random text strings.

  1. Initializing an array
  2. Storing the image file names in that array
  3. Finding the length of this array
  4. Using the Math.random() to generate a random number
  5. Using the randomly generated number as index for retrieving an image file name from the array.
  6. Displaying the image.
var img_name = new Array("purple.gif", "red.gif",
"blue.gif", "yellow.gif", "green.gif", "pink.gif");

var l = img_name.length;

var rnd_no = Math.floor(l*Math.random());

document.r_img.src = img_name[rnd_no];

<img src="purple.gif" width="100" height="50" 
name="r_img" alt="Random image" />

In the code above, we have JavaScript array containing 6 images. The array length found from length is, thus, 6 – img_name[0] would be “purple.gif”, img_name[1] would be “red.gif” and so on. We then use the Math.round() to get a random number, multiply it with the array length and round it up using Math.floor().

Note: Array are zero-indexed, so the last element in the array will the length of the array minus 1. However, since we are employing floor() to get an integer, we can use the value from ARRAY_NAME.length directly.

You can also use the id attribute of the image tag instead of name; as:

var img_name = new Array("purple.gif", "red.gif",
"blue.gif", "yellow.gif", "green.gif", "pink.gif");

var l = img_name.length;

var rnd_no = Math.floor(l*Math.random());

document.getElementById("randomimage").src = img_name[rnd_no];

<img src="purple.gif" width="100" height="50" 
id="randomimage" alt="Random image" />

When can you display random images on a web page?

A potential use of the random image displaying code is when you want to show a single banner from a set – though I would prefer using server-side scripts like PHP or Perl for this. I have also employed the code to randomly rotate images at a designated place on the web page.

Sponsored Links

Your comments
Star icon IMPORTANT Have a question / problem? Click here to ask an expert.

Why should you delete web browser history?

Sponsored Links

Tips

How do I view a deleted web page?
Is there a way to view a deleted web page - one that is no longer available? Yes there is and the solution is quite simple. [more...]

Fact

Altair 8800, sold as a build-it-yourself kit, is generally regarded as the device that sparked the microcomputer revolution. Microsoft's Altair BASIC was the first programming language for the machine. [more...]

We use cookies to give you the best possible website experience. By using WebDevelopersNotes.com, you agree to our Privacy Policy