Пример:
Создание слайд-шоу отзывов
Шаг 1) добавить HTML:
<div class="slideshow-container">
<div class="mySlides">
<q>I love you the more in that I believe you had liked me for my own sake and for nothing else</q>
<p class="author">- John Keats</p>
</div>
<div class="mySlides">
<q>But man is not made for defeat. A man can be destroyed but not defeated.</q>
<p class="author">- Ernest Hemingway</p>
</div>
<div class="mySlides">
<q>I have not failed. I've just found 10,000 ways that won't work.</q>
<p class="author">- Thomas A. Edison</p>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<div class="dot-container">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
Шаг 2) добавить CSS:
/* Контейнер слайд-шоу */
.slideshow-container {
position: relative;
background: #f1f1f1f1;
}
/* Слайды */
.mySlides {
display: none;
padding: 80px;
text-align: center;
}
/* Кнопки «Далее» и «Назад» */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -30px;
padding: 16px;
color: #888;
font-weight: bold;
font-size: 20px;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Поместите кнопку «Далее» вправо */
.next {
position: absolute;
right: 0;
border-radius: 3px 0 0 3px;
}
/* При наведении добавьте черный цвет фона с небольшим количеством прозрачности */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
color: white;
}
/* Контейнер точки/маркера/индикатора */
.dot-container {
text-align: center;
padding: 20px;
background: #ddd;
}
/* Точки/пули/индикаторы */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
/* Добавляем цвет фона к активной точке/кружку */
.active, .dot:hover {
background-color: #717171;
}
/* Добавляем курсив ко всем кавычкам */
q {font-style: italic;}
/* Добавляем автору синий цвет */
.author {color: cornflowerblue;}
Шаг 3) добавить JavaScript:
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}