【发布时间】:2019-02-28 12:16:47
【问题描述】:
我正在使用 bootstrap 4.1 的最新版本
我正在尝试使用轮播指示器。
但是当我尝试按下我的指标之一时。
它不工作。
我不想使用: “轮播控制上一个” “轮播控制-nextx”
这是我的代码:
<section class="slider">
<div id="sitebanners" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#sitebanners" data-slide-to="0" class="active"></li>
<li data-target="#sitebanners" data-slide-to="1" class=""></li>
<li data-target="#sitebanners" data-slide-to="2" class=""></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/banner1.jpg" alt="First slide"/>
<div class="carousel-caption">
<h5 class="title">get your stylish</h5>
<h5 class="sub_title">look today</h5>
<p>Make your hairstyle an important part for the expression of your identity! Our licensed hair
dressers will make sure you get the exact style you want!</p>
<a href="#">Learn More</a>
</div>
</div>
<div class="carousel-item">
<img src="images/banner2.jpg" alt="Second slide"/>
<div class="carousel-caption">
<h5 class="title">premier esthetics</h5>
<h5 class="sub_title">services</h5>
<p>Premier Esthetics offers various treatments to enhance the natural beauty of your skin while
targeting areas of concern to achieve optimal results.</p>
<a href="#">Learn More</a>
</div>
</div>
<div class="carousel-item">
<img src="images/banner3.jpg" class="img-fluid" alt="Third slide"/>
<div class="carousel-caption">
<h5 class="title">ultimate experience</h5>
<h5 class="sub_title">in hair care</h5>
<p>Highlights are always trendy! From just a Sun Kiss to Platinum Blonde we can transform the way
your hair looks and make it shiny!</p>
<a href="#">Learn More</a>
</div>
</div>
</div>
</div>
</section>
我尝试了很多方法。
但没有任何效果
谢谢!
【问题讨论】:
标签: bootstrap-4