如何仅在第二张图像幻灯片上更改轮播图像滑块指示箭头??
在第一张幻灯片上,我希望是黑色,但是当图像滑动到第二张幻灯片时,我希望将指示器设置为白色。
这可能吗?
我试图在第二张幻灯片上创建id标签,但没有帮助,CSS专家知道如何做到这一点?
最大的问题是我不能只在CSS中定位第二张幻灯片轮播图标,而且我也不知道该怎么做。
答案 0 :(得分:0)
这是HTML代码,这是“轮播”图片滑块示例:
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="1.jpg" alt="First slide">
<div class="carousel-caption">
<h2 id="fadeuptext" class='animated fadeInUp' style="animation-delay: 1s">Hello</h2>
<h2 id="fadelefttext" class='animated fadeInLeft' style="animation-delay: 2s">World</h2>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="2.jpg" style="height:797px;" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="3.jpg" style="height:797px;" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
我想在CSS中定位第二个图像滑块箭头图标,以将箭头颜色设置为白色。 carousel-control-next,.carousel-control-prev
答案 1 :(得分:-1)
我不确定不能看到您的代码,但是您应该能够使用如下所示的nth-child选择器:.target:nth-child(2){//样式在这里} 有关第n个子选择器的更多信息,请查看W3学校的这篇文章:https://www.w3schools.com/cssref/sel_nth-child.asp