当前位置 : 主页 > 网页制作 > css >

css – 当活动为黄色而非活动为白色时,如何更改离子滑块寻呼机点/圆圈颜色?

来源:互联网 收集:自由互联 发布时间:2021-06-13
所以我有这个幻灯片盒,因为你可以看到寻呼机点/圆圈出现而我不需要包含 ion-slide-pager / ion-slide-pager: ion-slide-box ion-slide div class="slide-wrapper" img class="slider-img" src="../../img/icons/corazonesf
所以我有这个幻灯片盒,因为你可以看到寻呼机点/圆圈出现而我不需要包含< ion-slide-pager>< / ion-slide-pager>:

<ion-slide-box>

    <ion-slide>
      <div class="slide-wrapper">

        <img class="slider-img" src="../../img/icons/corazonesfera.png"/>

        <h2>SUBTITULO 1</h2>

        <p>
          Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
          industry's dummy text of the printing dummy text of

        </p>

      </div>
    </ion-slide>

    <ion-slide>
      <div class="slide-wrapper">

        <img class="slider-img" src="../../img/icons/corazonesfera.png"/>

        <h2>SUBTITULO 2</h2>

        <p>
          Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
          industry's    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
          industry's

        </p>

      </div>
    </ion-slide>

    <ion-slide>
      <div class="slide-wrapper">

        <img class="slider-img" src="../../img/icons/corazonesfera.png"/>

        <h2>SUBTITULO 3</h2>

        <p>
          Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
          industry's
          standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it
          to make a
          type specimen book. It has survived not only five centuries, but also the leap into electronic

        </p>

      </div>
    </ion-slide>

  </ion-slide-box>

它给了我这个观点:

我尝试插入< ion-slide-pager>< / ion-slide-pager>离子滑动盒和离子滑动之间就像this tutorial一样

<ion-slide-pager></ion-slide-pager>
    <ion-slide>
        ...
    </ion-slide>

    <ion-slide>
       ...
    </ion-slide>

但这只会让我的观点变得混乱,并增加了第4个点/寻呼机,我不知道它来自哪里:

我需要的:

我需要在活动时将寻呼机点更改为黄色,将非活动时更改为白色,如下所示:

更新答案

好的,最后得到它的工作,感谢这里的用户输入是工作Css:

.slider-pager-page {
  color: white !important;
}

.slider-pager-page.active {
  color: $golden-color !important;
}
我确定滑块寻呼机应该工作试试这个:

.slider-pager-page
{
  color: white;
  fill: #f90;
  stroke: red;
  background-color: blue;
}
.slider-pager-page.active
{
  fill: #f90;
  stroke: red;
  color: blue;
  background-color: red;
}

我包含一些背景颜色,以便您更容易识别.

网友评论