引导旋转木马指示器循环问题



我已经将我的Bootstrap carousel指示器从单选按钮更改为小预览缩略图,这导致缩略图在循环时变得混乱。

不幸的是,我完全不理解Bootstrap的默认旋转木马循环,所以我无法弄清楚我的活动指示器缩略图似乎取代了其他的。

如果有人可以帮助我解决这个问题(和/或解释默认的活动指示器循环),我将非常感谢帮助!

HTML:

    <ol class="carousel-indicators">
        <li data-target="#homeWineCarousel" data-slide-to="0" class="active">
            <img src="http://taybehwinery.com/images/wine/blanc14.jpg">
        </li>
        <li data-target="#homeWineCarousel" data-slide-to="1">
            <img src="http://taybehwinery.com/images/wine/cabernet13.jpg">
        </li>
        <li data-target="#homeWineCarousel" data-slide-to="2">
            <img src="http://taybehwinery.com/images/wine/merlot13.jpg">
        </li>
        <li data-target="#homeWineCarousel" data-slide-to="3">
            <img src="http://taybehwinery.com/images/wine/syrah13.jpg">
        </li>
    </ol>
    <div class="carousel-inner">
        <div class="item active">
            <a href="blanc14.html"><img src="http://taybehwinery.com/images/wine/blanc14.jpg"></a>
            <div class="carousel-caption"><h3><a href="blanc14.html">Sauvignon Blanc 2014</a></h3></div>
        </div>
        <div class="item">
            <a href="cabernet13.html"><img src="images/wine/cabernet13.jpg"></a>
            <div class="carousel-caption"><h3><a href="cabernet13.html">Cabernet Sauvignon 2013</a></h3></div>
        </div>
        <div class="item">
            <a href="merlot13.html"><img src="images/wine/merlot13.jpg"></a>
            <div class="carousel-caption"><h3><a href="merlot13.html">Merlot 2013</a></h3></div>
        </div>
        <div class="item">
            <a href="syrah13.html"><img src="images/wine/syrah13.jpg"></a>
            <div class="carousel-caption"><h3><a href="syrah13.html">Syrah 2013</a></h3></div>
        </div>
    </div>
    <a class="left carousel-control" href="#homeWineCarousel" role="button" data-slide="prev">
        <span class="glyphicon glyphicon-chevron-left"></span>
    </a>
    <a class="right carousel-control" href="#homeWineCarousel" role="button" data-slide="next">
        <span class="glyphicon glyphicon-chevron-right"></span>
    </a>
</div>
CSS:

.carousel-indicators li img { 
    display: block; 
    width: 120px; height: auto; 
}
.carousel-indicators {
    position: absolute; 
    width: 100%;
    top: 630px; 
    left: 20px;
    z-index: 5;
    margin: 0;
    list-style: none;
}
.carousel-indicators .active { 
    position: relative;
    top: -230px;
    left: -75px;
}
.carousel-indicators li { 
    width: 80px; height: auto;
}

这是我第一次使用堆栈溢出,所以如果我的问题不清楚,或者你需要更多的信息,请告诉我。我知道我的代码可能相当混乱,至少有点荒谬——我是一个初学者,欢迎任何帮助清理的建议。

您需要将<li>仅替换为图像,并将属性放置到图像上,使其看起来像这样:

<img src="http://taybehwinery.com/images/wine/merlot13.jpg" data-target="#myCarousel" data-slide-to="2"/>

我已经创建了JSFiddle,下面的任务工作,请检查,然后如果你有任何问题,我将在这里回答他们。

http://jsfiddle.net/tfthum3t/

最新更新