단순히 3장의 이미지로 prev, next(<,>) / dot 클릭 했을 때 이미지가 변경하는 작업이다.
!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="Slideshow_img/img1.jpg" style="width:100%">
<div class="text">Caption One</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="Slideshow_img/img2.jpg" style="width:100%">
<div class="text">Caption Two</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="Slideshow_img/img3.jpg" style="width:100%">
<div class="text">Caption Three</div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
* {box-sizing: border-box;}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none; /* div class="mySlides fade" 에 적용 */
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.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;
}
/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
기존 실습과 다르게 3.5초 뒤에 자동으로 화면슬라이드 이동 하는 기능을 추가했다.
<script>
// 첫 페이지 로딩 시, 첫 번째 이미지를 보여주는 변수값 저장
let slideIndex = 1;
// 현재 슬라이드 기준 매개변수 인자를 가진 block 처리 및 dot class "dot active" 처리
showSlides(slideIndex);
// setInerval(할일, 시간) : 시간마다 할일
let timer = setInterval(autoSlide, 3500);
// 할일 : 다음 슬라이드 이동하는 함수
function autoSlide() {
// 1. 다음 슬라이드 변수 값 저장 후
slideIndex += 1;
// 2. 다음 슬라이드 매개변수 인자를 가진 "슬라이드 이동하는 함수" 호출
showSlides(slideIndex);
}
// 할일 : Next/previous 클릭 시 "다음 또는 이전 페이지 슬라이드 이동 함수" 호출
function plusSlides(n) {
// 1. 현재 슬라이드 기준 매개변수 인자를 가진 "슬라이드 이동하는 함수" 호출
showSlides(slideIndex += n);
// 2. 다음 슬라이드 이동 후, timer 시간 값 "0"으로 초기화
resetTimer();
}
// 할일 : dot 클릭 시 "다음 또는 이전 페이지 슬라이드 이동 함수" 호출
function currentSlide(n) {
// 1. dot 값 매개변수 인자를 가진 "슬라이드 이동하는 함수" 호출
showSlides(slideIndex = n);
// 2. 해당 dot 슬라이드 이동 후, timer 시간 값 "0"으로 초기화
resetTimer();
}
// 할일 : 슬라이드 이동 이벤트 후, 시간 "0"으로 초기화
function resetTimer() {
// 시간 "0"으로 초기화
clearInterval(timer);
// 다시 ineteval 3500ms 설정
timer = setInterval(autoSlide, 3500);
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
// plusSides(1) 함수 사용 시, 슬라이드가 3장이 넘어가면 SlideIndex "1"로 변경
if (n > slides.length) {slideIndex = 1}
// plusSides(-1) 함수 사용 시, 슬라이드가 3장이 넘어가면 SlideIndex "3"로 변경
if (n < 1) {slideIndex = slides.length}
// slide 전체에 대한 display none 처리(for문)
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
// dot 전체에 대한 클래스 네임 "dot" 처리(for문)
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
// 현재 슬라이드 display "block" 처리
slides[slideIndex-1].style.display = "block";
// 현재 슬라이드 dot 클래스 네임 "active" 변경 처리
dots[slideIndex-1].className += " active";
}
</script>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {box-sizing: border-box;}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none; /* div class="mySlides fade" 에 적용 */
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.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;
}
/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
</style>
</head>
<body>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="Slideshow_img/img1.jpg" style="width:100%">
<div class="text">Caption One</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="Slideshow_img/img2.jpg" style="width:100%">
<div class="text">Caption Two</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="Slideshow_img/img3.jpg" style="width:100%">
<div class="text">Caption Three</div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
<script>
// 첫 페이지 로딩 시, 첫 번째 이미지를 보여주는 변수값 저장
let slideIndex = 1;
// 현재 슬라이드 기준 매개변수 인자를 가진 block 처리 및 dot class "dot active" 처리
showSlides(slideIndex);
// setInerval(할일, 시간) : 시간마다 할일
let timer = setInterval(autoSlide, 3500);
// 할일 : 다음 슬라이드 이동하는 함수
function autoSlide() {
// 1. 다음 슬라이드 변수 값 저장 후
slideIndex += 1;
// 2. 다음 슬라이드 매개변수 인자를 가진 "슬라이드 이동하는 함수" 호출
showSlides(slideIndex);
}
// 할일 : Next/previous 클릭 시 "다음 또는 이전 페이지 슬라이드 이동 함수" 호출
function plusSlides(n) {
// 1. 현재 슬라이드 기준 매개변수 인자를 가진 "슬라이드 이동하는 함수" 호출
showSlides(slideIndex += n);
// 2. 다음 슬라이드 이동 후, timer 시간 값 "0"으로 초기화
resetTimer();
}
// 할일 : dot 클릭 시 "다음 또는 이전 페이지 슬라이드 이동 함수" 호출
function currentSlide(n) {
// 1. dot 값 매개변수 인자를 가진 "슬라이드 이동하는 함수" 호출
showSlides(slideIndex = n);
// 2. 해당 dot 슬라이드 이동 후, timer 시간 값 "0"으로 초기화
resetTimer();
}
// 할일 : 슬라이드 이동 이벤트 후, 시간 "0"으로 초기화
function resetTimer() {
// 시간 "0"으로 초기화
clearInterval(timer);
// 다시 ineteval 3500ms 설정
timer = setInterval(autoSlide, 3500);
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
// plusSides(1) 함수 사용 시, 슬라이드가 3장이 넘어가면 SlideIndex "1"로 변경
if (n > slides.length) {slideIndex = 1}
// plusSides(-1) 함수 사용 시, 슬라이드가 3장이 넘어가면 SlideIndex "3"로 변경
if (n < 1) {slideIndex = slides.length}
// slide 전체에 대한 display none 처리(for문)
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
// dot 전체에 대한 클래스 네임 "dot" 처리(for문)
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
// 현재 슬라이드 display "block" 처리
slides[slideIndex-1].style.display = "block";
// 현재 슬라이드 dot 클래스 네임 "active" 변경 처리
dots[slideIndex-1].className += " active";
}
</script>
</script>
</body>
</html>