Single Slider
It single sllider only
by Nehemia Mwansasu
HTML
<div class="container">
<ul id="slides">
<li class="slide showing">Slide 1</li>
<li class="slide">Slide 2</li>
<li class="slide">Slide 3</li>
<li class="slide">Slide 4</li>
<li class="slide">Slide 5</li>
</ul>
<div class="buttons">
<button class="controls" id="previous"><</button>
<button class="controls" id="next">></button>
</div>
CSS
/*
Essential - Core
*/
#slides {
position: relative;
height: 300px;
padding: 0px;
margin: 0px;
list-style-type: none;
}
.slide {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
opacity: 0;
z-index: 1;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
}
.showing {
opacity: 1;
z-index: 2;
}
/*
Non-essential - Styles
*/
.slide {
font-size: 40px;
padding: 40px;
box-sizing: border-box;
background: #333;
color: #fff;
}
.slide:nth-of-type(1) {
background: red;
}
.slide:nth-of-type(2) {
background: orange;
}
.slide:nth-of-type(3) {
background: green;
}
.slide:nth-of-type(4) {
background: blue;
}
.slide:nth-of-type(5) {
background: purple;
}
.controls {
color: #fff;
font-size: 40px;
cursor: pointer;
}
.controls:hover {
color: #333;
}
.container {
position: relative;
}
.container button:nth-of-type(1) {
position: absolute;
left: 0;
top: 50%;
z-index: 10;
}
.container button:nth-of-type(2) {
position: absolute;
right: 0;
top: 50%;
z-index: 10;
}
JavaScript
var currentSlide = 0;
var slides = document.querySelectorAll("#slides .slide");
var controls = document.querySelectorAll(".controls");
var next = document.getElementById("next");
var previous = document.getElementById("previous");
for (var i = 0; i < controls.length; i++) {
controls[i].style.display = "inline-block";
}
function goToSlide(n) {
slides[currentSlide].className = "slide";
currentSlide = (n + slides.length) % slides.length;
slides[currentSlide].className = "slide showing";
}
function nextSlide() {
goToSlide(currentSlide + 1);
}
function previousSlide() {
goToSlide(currentSlide - 1);
}
next.onclick = function() {
nextSlide();
};
previous.onclick = function() {
previousSlide();
};