2016-10-31 2 views
0

슬라이드 쇼가있는 웹 페이지가 있습니다. 슬라이드 쇼에는 세 장의 그림이 있습니다. 페이지에서 사용자가이 슬라이드 쇼와 다른 5 개의 다른 그림으로 전환 할 수있는 버튼을 갖고 싶습니다. 자바 스크립트로 어떻게이 버튼을 프로그래밍 할 수 있으며 HTML에 두 번째 슬라이드 쇼를 추가 할 수 있습니까?자바 스크립트가있는 두 개의 슬라이드 쇼 간 전환

현재 HTML :

<div class="slideshow-container"> 
    <div class="mySlides fade"> 
    <div class="numbertext">1/3</div> 
    <img src="img1.jpg" style="width:100%"> 
    <div class="text">Caption Text</div> 
    </div> 

    <div class="mySlides fade"> 
    <div class="numbertext">2/3</div> 
    <img src="img2.jpg" style="width:100%"> 
    <div class="text">Caption Two</div> 
    </div> 

    <div class="mySlides fade"> 
    <div class="numbertext">3/3</div> 
    <img src="img3.jpg" style="width:100%"> 
    <div class="text">Caption Three</div> 
    </div> 

    <a class="prev" onclick="plusSlides(-1)">&#10094;</a> 
    <a class="next" onclick="plusSlides(1)">&#10095;</a> 
</div> 
<br> 

<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> 
<button>Switch Slideshow</button> 

현재 CSS :

/* Slideshow container */ 
.slideshow-container { 
    max-width: 1000px; 
    position: relative; 
    margin: auto; 
} 

/* 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; 
} 

/* 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: 13px; 
    width: 13px; 
    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 { 
    -webkit-animation-name: fade; 
    -webkit-animation-duration: 1.5s; 
    animation-name: fade; 
    animation-duration: 1.5s; 
} 

@-webkit-keyframes fade { 
    from {opacity: .4} 
    to {opacity: 1} 
} 

@keyframes fade { 
    from {opacity: .4} 
    to {opacity: 1} 
} 

현재 자바 스크립트 : 사전에

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"; 
} 

많은 감사합니다!

답변

0

글쎄, 먼저 슬라이드 쇼를 동적으로 만들 수 있어야합니다. 그래야만 다른 슬라이드를 서로 바꿀 수 있습니다. 나는 당신의 기존 코드를 리팩토링하지 않으려 고 노력했다. 또한 jQuery (개인적으로 사용하는)를 사용하지 않았습니다. 각 슬라이드에 마크 업을 생성하고 슬라이드 div에 마크 업을 설정하면됩니다. 버튼이 재정의되지 않도록 내부 div를 만들어야했습니다.

var slideshowIndex = 1; 
 
var slideIndex = 1; 
 
var slideshows = [ 
 
    [ 
 
    'http://placehold.it/500x300/f00/0ff?text=Foo', 
 
    'http://placehold.it/500x300/0f0/f0f?text=Bar', 
 
    'http://placehold.it/500x300/00f/ff0?text=Baz' 
 
    ], [ 
 
    'http://placehold.it/500x300/f70/07f?text=Fizz', 
 
    'http://placehold.it/500x300/0f7/f07?text=Buzz', 
 
    'http://placehold.it/500x300/70f/7f0?text=Bang' 
 
    ] 
 
]; 
 
var buttonTextArr = [ 'Show Images', 'Show Pages' ]; 
 
function createSlides(slides) { 
 
    return slides.map(function(slide, index) { 
 
    return [ 
 
     '<div class="mySlides fade">', 
 
     '<div class="numbertext">' + (index + 1) + '/' + slides.length + '</div>', 
 
     '<img src="' + slide + '">', 
 
     '<div class="text">Caption #' + (index + 1) + '</div>', 
 
     '</div>' 
 
    ].join(''); 
 
    }).join(''); 
 
} 
 
function createDots(slides) { 
 
    return slides.map(function(slide, index) { 
 
    return '<span class="dot" onclick="currentSlide(' + (index + 1) + ')"></span>' 
 
    }).join(''); 
 
} 
 
function loadSlideshow(slides) { 
 
    document.getElementsByClassName('slideshow-slides')[0].innerHTML = createSlides(slides); 
 
    document.getElementsByClassName('dots')[0].innerHTML = createDots(slides); 
 
} 
 
function loadNextSlideshow() { 
 
    slideshowIndex = (slideshowIndex + 1) % 2; 
 
    loadSlideshow(slideshows[slideshowIndex]); 
 
    slideIndex = 1; // Reset index 
 
    showSlides(slideIndex); 
 
    document.getElementsByClassName('switch')[0].innerHTML = buttonTextArr[slideshowIndex]; 
 
} 
 

 
loadNextSlideshow(); // Load the slideshow 
 

 
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"; 
 
}
/* Slideshow container */ 
 
.slideshow-container { 
 
    max-width: 1000px; 
 
    position: relative; 
 
    margin: auto; 
 
} 
 

 
/* 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; 
 
    text-shadow: 0.05em 0.05em 0.25em #000; 
 
} 
 

 
/* 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: 13px; 
 
    width: 13px; 
 
    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 { 
 
    -webkit-animation-name: fade; 
 
    -webkit-animation-duration: 1.5s; 
 
    animation-name: fade; 
 
    animation-duration: 1.5s; 
 
} 
 

 
@-webkit-keyframes fade { 
 
    from { opacity: 0.4 } 
 
    to { opacity: 1 } 
 
} 
 
@keyframes fade { 
 
    from { opacity: 0.4 } 
 
    to { opacity: 1 } 
 
}
<div class="slideshow-container"> 
 
    <div class="slideshow-slides"></div> 
 
    <a class="prev" onClick="plusSlides(-1)">&#10094;</a> 
 
    <a class="next" onClick="plusSlides(1)">&#10095;</a> 
 
</div> 
 
<br /> 
 
<div class="dots" style="text-align:center"></div> 
 
<button class="switch" onClick="loadNextSlideshow()">Switch Slideshow</button>

+0

감사합니다! 이것은 잘 작동합니다. 단추를 클릭 할 때 단추의 텍스트가 변경되도록 JavaScript를 조정하는 방법을 알고 있는지 물어볼 수도 있습니다. 버튼의 텍스트가 "이미지 표시"로 시작한다고 가정 해 보겠습니다. 클릭하면 "페이지 표시"를 표시 한 다음 다시 클릭하면 "이미지 표시"로 돌아갑니다. –

+0

@ A.Kimberley : 슬라이드 쇼 색인을 기반으로하는 텍스트 배열을 추가했습니다. [기록보기] (/ posts/40345397/revisions)로 업데이트 된 메모를 참조하십시오. –

+0

@Polywhirl : 감사합니다! 그것도 잘 작동합니다. 맞아, 나는 자바 스크립트와 Jquery를 제대로 배우기 위해 나 자신을 몇 가지 시도해 볼 수있다. –

0

여기에 작성된 플 런커입니다. 아래 링크를 참조하십시오. 이 당신을 위해 일하는

https://plnkr.co/edit/xso6MfwOxQJ4PlDpW90y?p=preview

HTML 
<div class="slideshow-container"> 
<a class="prev" onclick="plusSlides(-1)">&#10094;</a> 
<a class="next" onclick="plusSlides(1)">&#10095;</a> 
</div> 
<br> 

<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> 
<button>Switch Slideshow</button> 

JavaScript: 


var slideShowIndex = 1; 
var slideShows= [ 
    [ 
     { 

      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     }, 
     { 
      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     }, 
     { 
      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     } 
    ], 
    [ 
     { 

      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     }, 
     { 
      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     }, 
     { 
      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     }, 
     { 
      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     }, 
     { 
      'image': 'img1.jpg', 
      'caption': 'Caption Text' 
     } 
    ] 
    ] 

buildSlideShow(); 

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"; 
} 


function buildSlideShow(){ 
    var slideText = ''; 
    var slides = document.getElementsByClassName("slideshow-container"); 
    var slidesToRender = slideShows[slideShowIndex-1]; 
    slidesToRender.forEach(function(value,index){ 
    slideText += '<div class="mySlides fade"><div class="numbertext">'+ index+1+ '/'+slidesToRender.length + '</div><img src="'+value.image+'" style="width:100%"><div class="text">'+value.caption+'</div></div>'; 
    }); 
    slides[0].innerHtml = slideText; 

} 

희망.

관련 문제