Hi Friends,
In this blog we will discuss how to make “Image Slider Bar” you only need just basic understanding / knowledge of Programming languages like HTML 5, CSS 3 & JavaScript. Below is screen Shorts & code…
This is screen Shorts…


This is the code…
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Image Slider</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
body{
background-image: url("droop.jpg");
}
.w3-center {
color: whitesmoke;
font-size: 48px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
</style>
</head>
<body>
<h2 class="w3-center">Manual Slide Show</h2>
❮
❯
Press on Left To Right Arrow
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n
</body>
</html>
Looking Forward for your positive feedback…
ThankQ