JavaScript - Easy Image Slideshow

In this tutorial we will create a Easy Image Slideshow using JavaScript. This code can generate and change the image when the user click the butoon. The code use onclick() to initiate a function that change the image display by incrementing or decrementing the array index position of an image. Feel free to modify and apply it in your system, this is a user-friendly kind of program We will be using JavaScript as a server-side scripting language because It gives a greater control of your web page and extend its capability in a modern way approach. It is written in HTML or as an external sourcing to add some necessary features in your website.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. 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. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  5. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <div class="container-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">JavaScript - Easy Image Slideshow</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-2"></div>
  17. <div class="col-md-8">
  18. <center><img src="images/pic1.jpg" name="slideshow" height="180px" width="400px"></center>
  19. <br />
  20. <button onclick="autoPlay()" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Auto Play</button>
  21. <button onclick="stop()" id="stop" style="display:none;" onclick="autoPlay()" class="btn btn-danger"><span class="glyphicon glyphicon-stop"></span> Stop Auto Play</button>
  22. <button id="left" onclick="toggleImage(-1)" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-left"></span></button>
  23. <button id="right" onclick="toggleImage(1)" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-right"></span></button>
  24. </center>
  25. </div>
  26. </div>
  27. </body>
  28. <script src="js/script.js"></script>
  29. </html>

Creating the Script

This code contains the script of the application. This code will dynamically change the image display when the slider is moved. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. var image = new Array("images/pic1.jpg", "images/pic2.jpeg", "images/pic3.jpg", "images/pic4.jpeg", "images/pic5.jpeg");
  2. var count = 0;
  3. var length = image.length - 1;
  4. var interval;
  5. function toggleImage(num){
  6.  
  7. count = count + num;
  8.  
  9. if(count > length){
  10. count = 0;
  11. }
  12.  
  13. if(count < 0){
  14. count = length;
  15. }
  16.  
  17. document.slideshow.src = image[count];
  18.  
  19. return false;
  20. }
  21.  
  22. function autoPlay(){
  23. interval=setInterval("toggleImage(1)", 3000);
  24. document.getElementById('left').style.display="none";
  25. document.getElementById('right').style.display="none";
  26. document.getElementById('stop').style.display="inline";
  27. }
  28.  
  29. function stop(){
  30. window.location="index.html";
  31. }
There you have it we successfully created a Easy Image Slideshow using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment