如何更改 Ionic 4 中子弹滑块的道具?

How to change the props of bullet slider in Ionic 4?

如何改变ion-slider中子弹的道具(颜色,大小和位置) 我应用了下一个 link 的片段,但在 ionic 4 中不起作用 Change ion-slides pager dot color

刚刚找到答案

您应该应用您的样式,如下所示:

.swiper-pagination-bullet {
    --bullet-background: #00a0be;
    width: 12px;
    height: 12px;
  }

  .swiper-pagination-bullet-active {
      width: 12px;
      height: 12px;
     --bullet-background: transparent;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 5%!important;
  }

这些是更改圆点样式所需的 类。希望对你有效。