2017-03-08 172 views
0

我有以下滑塊,但是當我加載頁面時,它不顯示第一個圖像。我必須點擊按鈕來加載圖像。我怎樣才能做到默認顯示第一張圖片?下面是我的javascript:滑塊不顯示

<script> 
var slideIndex = 1; 
showSlides(slideIndex); 

function plusSlides(n) { 
showSlides(slideIndex += n); 
} 

function currentSlide(n) { 
    showSlides(slideIndex = n); 
} 


function showSlides() { 
    var i; 
    var slides = document.getElementsByClassName("mySlides"); 
    for (i = 0; i < slides.length; i++) { 
     slides[i].style.display = "none"; 
    } 
    slideIndex++; 
    if (slideIndex> slides.length) {slideIndex = 1} 
    slides[slideIndex-1].style.display = "block"; 
    setTimeout(showSlides, 2000); // Change image every 2 seconds 
} 
</script> 

這裏是我的html:

<div class="slideshow-container"> 
    <div class="mySlides fade"> 
    <div class="numbertext">1/3</div> 

    <img src="view8.png" style="width:100%"> 
    <div class="title">David Lee CEO of Hing Wa Lee Group</div> 

<div class="text">David Lee has turned the Hing Wa Lee Group Into one of the  largest luxury watch retailers in the US</div> 
    <!--------BUTTON--------> 
    <div id="hovers"> 
     <a href="#" class="buttonslider"> 
      <span class="contentbutslider"> Read More</span> 
     </a></div> 
</div> 

<div class="mySlides fade"> 
    <div class="numbertext">2/3</div> 
    <img src="view9.png" style="width:100%"> 
    <div class="title">One on One Business Lessons</div> 
    <div class="text">Gain Access To Weekly World Entrepreneurs and their stories to success.</div> 
     <!--------BUTTON--------> 
    <div id="hovers"> 
     <a href="#" class="buttonslider"> 
      <span class="contentbutslider"> Read More</span> 
     </a></div> 
</div> 

這裏是我的CSS:

* {box-sizing:border-box} 

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

.mySlides { 
    display: none; 
} 

    /* 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: 28px; 
    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 title and text */ 
    .title { 
    color: #f2f2f2; 
    font-size: 58px; 
    padding: 18px 22px; 
    position: absolute; 
    bottom: 158px; 
    width: 100%; 
    text-align: center; 
    } 
    .text { 
    color: #f2f2f2; 
    font-size: 28px; 
    padding: 18px 22px; 
    position: absolute; 
    bottom: 78px; 
    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} 
    } 

你能幫我這一點。另外,當我從幻燈片滑到幻燈片時,它變得越來越快,我想保持相同的速度?

任何人都可以幫忙嗎?謝謝

+0

VAR slideIndex = 0 ...爲什麼你從1開始的slideIndex? – Carele

+0

我嘗試過,但總是第一張幻燈片不顯示。它只顯示當我點擊其中一個點時。 – Kaloyan

回答

0

修改所有的代碼,檢查一遍,請:

<script> 
var slideIndex = 0; 

function plusSlides(n) { 
    slideIndex += n; 
    showSlides(); 
} 

function currentSlide(n) { 
    slideIndex = n; 
    showSlides(); 
} 


function showSlides() { 
    var slides = document.getElementsByClassName("mySlides"); 
    for (var i = 0; i < slides.length; i++) { 
     slides[i].style.display = "none"; 
    } 
    slideIndex++; 
    if (slideIndex> slides.length) {slideIndex = 0} 
    slides[slideIndex].style.display = "block"; 
} 

setTimeout(showSlides, 2000); // Change image every 2 seconds 
</script> 
+0

感謝您的回答,但仍然無法正常工作。 – Kaloyan

+0

讓我修改我的答案,我只注意到你的「showSlides」函數沒有收到正確的參數。 –

+0

好的。非常感謝! – Kaloyan