Javascript - Display Random Images On Load

In this tutorial we will create a Display Random Images On Load using Javascript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is widely used in designing a stunning website. It is an interpreted programming language that has a capabilities of Object-Oriented. This code can be used as your calculator to any mathematical problem. So Let's do the coding...

Getting Started:

This is the link for the bootstrap that has been used for the layout of the calculator https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. This code will display the images to the body. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  9. </nav>
  10. <div class="col-md-3"></div>
  11. <div class="col-md-6 well">
  12. <h3 class="text-primary">Javascript - Display Random Images On Load</h3>
  13. <hr style="border-top:1px dotted #ccc;"/>
  14. <img id="target" height="400px" width="600px"/>
  15. </div>
  16. </body>
  17. <script src="js/script.js"></script>
  18. </html>

Creating the Script

This code contains the script of the application. This code will render a random images to the page body. To do this just copy write the code as shown below inside the text editor and save it as script.js.
  1. var images = [
  2. 'image 1.jpg',
  3. 'image 2.jpg',
  4. 'image 3.jpg'
  5. ];
  6.  
  7. var length = images.length;
  8. var rand = Math.floor(length*Math.random());
  9. document.getElementById('target').src="images/" + images[rand];
There you have it we successfully created a Display Random Images On Load using javascript. I hope that this very simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Comments

Submitted byAceyWolf (not verified)on Sat, 07/22/2023 - 18:16

How can I get this code to display a second/third/fourth image within the same page? I've added a second but it only shows a bordered box

Add new comment