如何更改bootstrap轮播控制链接的大小?

时间:2017-09-16 18:41:14

标签: html css twitter-bootstrap

默认的bootstrap轮播控件(左箭头和右箭头)的链接跨越轮播中图像高度的100%。我道歉,因为这可能是一个愚蠢的问题,但你怎么改变这个链接只是在箭头本身的宽度和高度上?

你可以在Boostrap文档(https://getbootstrap.com/docs/3.3/javascript/#carousel)上看到我在“Carousel”下的含义示例,下面是旋转木马的代码。

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  <!-- Indicators -->
  <ol class="carousel-indicators">
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
    <li data-target="#carousel-example-generic" data-slide-to="1"></li>
    <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  </ol>

  <!-- Wrapper for slides -->
  <div class="carousel-inner" role="listbox">
    <div class="item active">
      <img src="..." alt="...">
      <div class="carousel-caption">
        ...
      </div>
    </div>
    <div class="item">
      <img src="..." alt="...">
      <div class="carousel-caption">
        ...
      </div>
    </div>
    ...
  </div>

  <!-- Controls -->
  <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
    <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
    <span class="sr-only">Previous</span>
  </a>
  <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
    <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
    <span class="sr-only">Next</span>
  </a>
</div>

4 个答案:

答案 0 :(得分:2)

添加一个带有&#39; carousel-control&#39;然后添加以下CSS。 或者你可以直接将这个CSS添加到你的代码

#carousel-example-generic a.carousel-control {
height: 26%;
top: 33%;
width: 86px;
background: black;
//add your own CSS as you need
}

答案 1 :(得分:1)

同时添加.carousel-control.left.carousel-control.right

//change the margin to make the width and height more longer or shorter
   margin: 100px 0;
//change the radius to make the point of the squared-hover looks rounded
   border-radius: 60px;

答案 2 :(得分:1)

我在进行了 Google 搜索后来到了这里,这是我自己想出来的,所以我添加了我的 Bootstrap 4.x 解决方案,以便其他人可以找到这个简单的解决方案。 由于图标是 SVG,因此同时调整高度和宽度将改变图标的​​大小。我曾假设如果我增加宽度,它们会改变大小,但事实并非如此。 我使用了 vw,因此它们会随着屏幕缩放,但您可以使用任何您想要的单位。

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 5vw;
  height: 5vw;
}

答案 3 :(得分:0)

添加最大高度和边距顶部的CSS值

<a style=" max-height:21%; margin-top:21%; " .....

以直观方式查看更改(在前aria-hidden="false"中进行<span>并在background-color:blue;中添加<a>

//请注意,我在Bootstrap 4中尝试过此操作,但不确定3