How to create image slideshow using JavaScript04:33

  • 0
Published on April 4, 2017

Link for all dot net and sql server video tutorial playlists

Link for slides, code samples and text version of the video

In this video, we will discuss creating a simple image slideshow using JavaScript. We will be using setInterval() and clearInterval() JavaScript methods to achieve this. We discussed these functions in detail in Part 34 of JavaScript Tutorial.

When you click “Start Slide Show” button the image slideshow should start and when you click the “Stop Slide Show” button the image slideshow should stop.

For the purpose of this demo we will be using the images that can be found on any windows machine at the following path.
C:UsersPublicPicturesSample Pictures

At the above location, on my machine I have 8 images. Here are the steps to create the image slideshow using JavaScript.

Step 1 : Open Visual Studio and create a new empty asp.net web application project. Name it Demo.

Step 2 : Right click on the Project Name in Solution Explorer in Visual Studio and create a new folder with name = Images.

Step 3 : Copy the 8 images from C:UsersPublicPicturesSample Pictures to Images folder in your project. Change the names of the images to 1.jpg, 2.jpg etc.

Step 4 : Right click on the Project Name in Solution Explorer in Visual Studio and add a new HTML Page. It should automatically add HTMLPage1.htm.

Step 5 : Copy and paste the following HTML and JavaScript code in HTMLPage1.htm page.
[img id=”image” src=”/Images/1.jpg” style=”width: 150px; height: 150px” /]
[br /]
[input type=”button” value=”Start Slide Show” onclick=”startImageSlideShow()” /]
[input type=”button” value=”Stop Slide Show” onclick=”stopImageSlideShow()” /]
[script type=”text/javascript”]
var intervalId;

function startImageSlideShow()
{
intervalId = setInterval(setImage, 500);
}

function stopImageSlideShow()
{
clearInterval(intervalId);
}

function setImage()
{
var imageSrc = document.getElementById(“image”).getAttribute(“src”);
var currentImageNumber = imageSrc.substring(imageSrc.lastIndexOf(“/”) + 1, imageSrc.lastIndexOf(“/”) + 2);
if (currentImageNumber == 8)
{
currentImageNumber = 0;
}
document.getElementById(“image”).setAttribute(“src”, “/Images/” + (Number(currentImageNumber) + 1) + “.jpg”);
}
[/script]

Finally run the application and test it.

https://cafeadobro.ro/

https://www.stagebox.uk/wp-includes/depo10-bonus10/

depo 25 bonus 25

https://parfumschristianblanc.com/

https://www.barplate.com/wp-includes/js/qris/

https://hotmusic507.org/

Enjoyed this video?
"No Thanks. Please Close This Box!"