如何自定义Bootstrap轮播控件

时间:2013-06-17 23:41:41

标签: twitter-bootstrap

您能告诉我如何自定义Bootstrap轮播控件,例如我想更改控件的大小,或者bg颜色以及如何将背景图像添加到控件中? 我试图用引导程序图标替换 << / strong>,但它们位于控件的顶部并且无法正常工作

<a class="carousel-control left" href="#this-carousel-id" data-slide="prev"><i class=" icon-arrow-right icon-white"></i></a>
<a class="carousel-control right" href="#this-carousel-id" data-slide="next">&rsaquo;</a>

输出如下:

enter image description here

3 个答案:

答案 0 :(得分:1)

你对CSS有多熟悉?

我在屏幕截图中看到的内容可以通过font-size和line-height属性进行调整

Bootstrap是一个CSS框架,所以自定义只是覆盖默认值,通常使用id标签或类似的东西

答案 1 :(得分:0)

这适合我的尺寸和颜色:

.carousel-control .icon-prev, .carousel-control .icon-next {
    font-size: 100px; 
    margin-top: -50px;
    color: #fff;
}

答案 2 :(得分:0)

一种更改颜色的快捷方法是覆盖内联svg背景:

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

查找fill='%23fff'部分并更改颜色,从白色变为其他颜色:fill='%23444'fill='RoyalBlue'