Random image display using JavaScript
Sponsored Links
Displaying a random image on a web page using JavaScript involves the following steps:
- Listing the images you plan to display
- Storing the names of these images in an array
- Using the Math.random() method to obtain a random value
- Rounding the random number to an integer using Math.floor()
- Displaying the image using document.write() method
Listing the images and storing them in an array
Let's suppose we plan to display one image from a set of 5 images, r1.gif, r2.gif, r3.gif, r4.gif and r5.gif. We create an array called img_rnd and store the image names in it.
var img_rnd = new Array ("r1.gif", "r2.gif",
"r3.gif", "r4.gif", "r5.gif");
Remember, JavaScript arrays are zero indexed (the first element of an array in JavaScript has an index of 0). The Math.random() method returns a value between 0.0 and 1.0. We have to convert this value to an integer between 0 to 4 so that it can be used as an index to retrieve the image name from the img_rnd array. We store the final value in a variable i.
Generating a random number
var i = Math.floor(4*Math.random());
The above code can be broken into two parts for easy understanding:
- The random number thrown out by Math.random() method is multiplied by 5, which is the number of elements in our array.
- The Math.floor() method is then used to convert the random floating point (decimal) number into an integer. Since floor() rounds a number down, we shall always get a number between 0 and 4.
Displaying the image
The final step is to display the image through document.write() method.
document.write('<img src="' + img_rnd[i] + '" width="100"
height="100" alt="Random image" />');
We now place all this code between <script>-</script> tags.
<script language="JavaScript">
<!--
var img_rnd = new Array ("r1.gif", "r2.gif",
"r3.gif", "r4.gif", "r5.gif");
var i = Math.floor(4*Math.random());
document.write('<img src="' + img_rnd[i] + '" width="100"
height="100" alt="Random image" />');
//-->
</script>
The Result
Click on the refresh button of the web browser to reload this page. And if you are lucky (80% chance), you'll see another image below.
Page contents: JavaScript code for randomly displaying images on a web page.
Comments, questions, feedback... whatever!
Recent Articles
Recent Blog Posts
Popular Articles
- Hotmail Sign In page
- Create a Hotmail account - Instructions
- Create Gmail address
- Download and install Outlook Express
- Get your free Gmail address
- Outlook Express new version
- Create my own email address
- Browers for Windows list
- Get email address
- Color combinations for web sites and pages
- Create Yahoo ID
More web tips & tricks
- Outlook Express Help - tips & tricks (53)
- Windows Live Mail help and tips (36)
- Windows Mail help (25)
- Hotmail help and tips (42)
- Yahoo help & support (45)
- AOL email help (26)
- Gmail help and tips (36)
- Internet tips & tricks (12)
- Web Design tips & tricks (33)
- HTML, Javascript tips tricks (68)
- Web Promotion tips & tricks (8)
- Graphics tips & tricks (20)
