ngx-bootstrap轮播-如何修改指标,上一个和下一个按钮

时间:2019-06-04 18:56:21

标签: html css bootstrap-4 angular6 ngx-bootstrap

<carousel >
  <a href="">
  <slide *ngFor="let slide of slides">
     <img src="{{slide.imgUrl}}" alt="" style="display: 
           block; width: 100%;">
  </slide>

1。如何用图像图标代替指示器? 2.如何用四舍五入而不是直线显示指标?

1 个答案:

答案 0 :(得分:0)

您的文档检查器可以快速向您显示需要进行更改的位置。右键单击,检查。

.carousel-indicators li::before {
    background-image: url(...);
    /* OR */
    content: 'somechar';
    font-family: someFontFamily;
}