控制轮播尺寸的高度

controlling the height of the carousel size

我试图确保我的旋转木马尺寸在高度方面保持不变。我使用不同的图像,我知道图像大小不同但不确定如何控制图像的高度。无论图像大小如何,我都希望轮播高度保持不变,那么我该如何控制呢?这是我正在使用的代码:

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

    <!-- Wrapper for slides -->
    <div class="carousel-inner" role="listbox">
      <div class="item active">
        <%--<img src="img_chania.jpg" alt="Chania" width="460" height="345">--%>
          <img src="img/sleep1.jpg" alt="Chania" width="460" height="345" />
          <div class="carousel-caption">
              <h1>Example headline.</h1>
              <p>this is test </p>
         </div>
      </div>

      <div class="item">
       <%-- <img src="img_chania2.jpg" alt="Chania" width="460" height="345">--%>
          <img src="img/image5.jpg" alt="Chania" width="460" height="345"/>

      </div>

      <div class="item">
        <%--<img src="img_flower.jpg" alt="Flower" width="460" height="345">--%>
          <img src="img/nature3.jpg" alt="Chania" width="460" height="145" />
          <div class="carousel-caption">
              <h1>Example headline.</h1>
              <p>this is test </p>
         </div>
      </div>

      <div class="item">
        <%--<img src="img_flower2.jpg" alt="Flower" width="460" height="345">--%>
          <img src="img/nature2.jpg" alt="Chania" width="460" height="245"/>
      </div>
    </div>

    <!-- Left and right controls -->
    <a class="left carousel-control" href="#myCarousel" 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="#myCarousel" role="button" data-slide="next">
      <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
      <span class="sr-only">Next</span>
    </a>
  </div>

在 class .item 添加一些覆盖 Bootstraps 核心 CSS 的自定义 CSS,如下所示:

 <style>
 .carousel-inner > .item > img,
 .carousel-inner > .item > a > img {
     display: block;
     max-width: 100%;
     height: 400px !important;
 }
 </style>

这将使轮播大小为 400 像素。

默认情况下,高度设置为自动,但由于我们不希望这样,所以我们手动设置了一个大小并说它是 !important 这样浏览器就知道这种样式会否决 bootstrap css 事先设置。

我希望这对您有所帮助并且有意义。

我只是将这段代码添加到标签中就解决了这个问题

<div id="Div1" class="carousel" runat="server" style="height:800px !important;">

它会自动增加尺寸,如果您还想增加宽度。 谢谢