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.
<!DOCTYPE html>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<nav class="navbar navbar-default">
<a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester
</a>
</nav>
<div class="col-md-6 well">
<h3 class="text-primary">Javascript - Display Random Images On Load
</h3>
<hr style="border-top:1px dotted #ccc;"/>
<img id="target" height="400px" width="600px"/>
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.
var images = [
'image 1.jpg',
'image 2.jpg',
'image 3.jpg'
];
var length = images.length;
var rand = Math.floor(length*Math.random());
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!