68

我一直在使用 Bootstrap 的轮播类,到目前为止它一直很简单,但是我遇到的一个问题是不同高度的图像会导致箭头上下反弹以适应新的高度。

这是我用于轮播的代码:

<div id="myCarousel" class="carousel slide">
    <div class="carousel-inner">
        <div class="item active">
            <img src="image_url_300height"/>
            <div class="carousel-caption">
                <h4>...</h4>
                <p>...</p>
            </div>
        </div>
        <div class="item">
            <img src="image_url_700height" />
        </div>
    </div>
    <!-- Carousel nav -->
    <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a>
    <a class="carousel-control right" href="#myCarousel" data-slide="next">&rsaquo;</a>
</div>

这个jsfiddle也说明了这个问题(诚然不是我的,我在尝试解决这个问题时在一个单独的问题上发现了这个!)

我的问题是:如何强制轮播保持在固定高度(小提琴中的第二个缩略图)并将较小的图像居中,同时将标题和箭头保持在相对于轮播的静态位置?

4

14 回答 14

92

看起来像 bootstrap less/CSS 强制自动高度以避免在宽度必须更改以响应时拉伸图像。我切换它以使宽度自动并固定高度。

<div class="item peopleCarouselImg">
  <img src="http://upload.wikimedia.org/...">
  ...
</div>

然后我用这样的类定义 img peopleCarouselImg

.peopleCarouselImg img {
  width: auto;
  height: 225px;
  max-height: 225px;
}

我将高度固定为 225 像素。我让宽度自动调整以保持纵横比正确。

这似乎对我有用。

于 2012-11-21T16:10:12.217 回答
19

试试这个(我正在使用SASS):

/* SASS */
.carousel {
  max-height: 700px;
  overflow: hidden;

  .item img {
    width: 100%;
    height: auto;
  }
}

如果您愿意,可以将其包装.carousel成 a 。.container

/* CSS */
.carousel {
  max-height: 700px;
  overflow: hidden;
}

.carousel .item img {
  width: 100%;
  height: auto;
}

关键是要保持高度一致。这就是max-height限制更大图像的地方。

或者,您可以将图像设置为背景图像,让您在高度和图像位置上更加灵活(例如background-sizebackground-position等)

为了响应,您需要使用媒体查询。

编辑:谢谢大家,不知道这仍在搜索中。投票帮助其他开发者!

于 2014-02-12T07:45:23.117 回答
15

尝试使用规范化引导轮播幻灯片高度的 jQuery 代码

function carouselNormalization() {
  var items = $('#carousel-example-generic .item'), //grab all slides
    heights = [], //create empty array to store height values
    tallest; //create variable to make note of the tallest slide

  if (items.length) {
    function normalizeHeights() {
      items.each(function() { //add heights to array
        heights.push($(this).height());
      });
      tallest = Math.max.apply(null, heights); //cache largest value
      items.each(function() {
        $(this).css('min-height', tallest + 'px');
      });
    };
    normalizeHeights();

    $(window).on('resize orientationchange', function() {
      tallest = 0, heights.length = 0; //reset vars
      items.each(function() {
        $(this).css('min-height', '0'); //reset min-height
      });
      normalizeHeights(); //run it again 
    });
  }
}

/**
 * Wait until all the assets have been loaded so a maximum height 
 * can be calculated correctly.
 */
window.onload = function() {
  carouselNormalization();
}

于 2017-01-25T21:49:30.620 回答
10

您还可以使用此代码调整所有轮播图像。

.carousel-item{
    width: 100%; /*width you want*/
    height: 500px; /*height you want*/
    overflow: hidden;
}
.carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
于 2019-04-28T21:27:58.167 回答
5

这是对我有用的解决方案;我这样做是因为轮播中的内容是从用户提交的内容动态生成的(所以我们不能在样式表中使用静态高度)——这个解决方案也应该适用于不同大小的屏幕:

function updateCarouselSizes(){
  jQuery(".carousel").each(function(){
    // I wanted an absolute minimum of 10 pixels
    var maxheight=10; 
    if(jQuery(this).find('.item,.carousel-item').length) {
      // We've found one or more item within the Carousel...
      jQuery(this).carousel(); // Initialise the carousel (include options as appropriate)
      // Now we iterate through each item within the carousel...
      jQuery(this).find('.item,.carousel-item').each(function(k,v){ 
        if(jQuery(this).outerHeight()>maxheight) {
          // This item is the tallest we've found so far, so store the result...
          maxheight=jQuery(this).outerHeight();
        }
      });
      // Finally we set the carousel's min-height to the value we've found to be the tallest...
      jQuery(this).css("min-height",maxheight+"px");
    }
  });
}

jQuery(function(){
  jQuery(window).on("resize",updateCarouselSizes);
  updateCarouselSizes();
}

从技术上讲,这不是响应式的,但出于我的目的,这on window resize使得它具有响应性。

于 2017-03-09T14:06:15.353 回答
4

如果有人正在狂热地谷歌搜索以解决弹跳图像轮播问题,这对我有帮助:

.fusion-carousel .fusion-carousel-item img {
    width: auto;
    height: 146px;
    max-height: 146px;
    object-fit: contain;
}
于 2017-05-03T17:57:56.980 回答
2

前面给出的解决方案导致图像对于轮播框来说可能太小了。控制碰撞问题的正确解决方案是覆盖 Bootstraps CSS。

原始代码:

.carousel-control {
top: 40%;
}

在您自己的样式表中使用固定值覆盖变量(在我的设计中使用了 300px):

.carousel-control {
top: 300px;
}

希望这能解决您的问题。

于 2014-01-08T09:35:36.393 回答
2

在你的页脚中包含这个 JavaScript(加载 jQuery 之后):

$('.item').css('min-height',$('.item').height());
于 2016-12-20T09:49:37.307 回答
1

如果您想在不固定高度的情况下使用任何高度的图像,只需执行以下操作:

$('#myCarousel').on("slide.bs.carousel", function(){
     $(".carousel-control",this).css('top',($(".active img",this).height()*0.46)+'px');
     $(this).off("slide.bs.carousel");
});
于 2015-01-22T21:17:09.817 回答
1

最近我正在为 Bootstrap 轮播测试这个 CSS 源

设置为 380 的高度应设置为等于正在显示的最大/最高图像...

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  max-height: 100%;
  max-height: 380px;
  margin-bottom: 60px;
  height:auto;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
    background: rgba(0, 0, 0, 0.45);
}

/* Declare heights because of positioning of img element */
.carousel .item {
  max-height: 100%;
  max-height: 380px;
  background-color: #777;
}
.carousel-inner > .item > img {
 /*  position: absolute;*/
  top: 0;
  left: 0;
  min-width: 40%;
  max-width: 100%;
  max-height: 380px;
  width: auto;
  margin-right:auto;
  margin-left:auto;
  height:auto;
  
}
于 2015-07-28T18:07:10.927 回答
0

请注意,此处标准化高度的 jQuery 解决方案可能会与 IE 冲突。

经过一些测试(使用 Bootstrap 3)后,看起来 IE 不会费心调整图像大小,除非它们实际上正在被渲染。如果您使窗口变小,则活动项目的图像会调整大小,但背景图像会保留它们的高度,因此“最高”高度保持不变。

在我的例子中,我们只在这些项目上渲染图像,并且图像只有几个像素。所以我选择使用活动图像的高度来设置所有图像的样式。其他所有内容都会调整大小以适应高度,因此如果您的纵横比变化很大,请记住这一点。

    function carouselNormalization() {
        var items = $('.carousel .item');

        if (items.length) {
            function normalizeHeights() {
                let activeImageHeight = items.filter('.active').find('img').height();
                items.each(function() {
                    $(this).find('img').css('height',  activeImageHeight + 'px');
                });
            };
            normalizeHeights();

            $(window).on('resize orientationchange', function() {
                items.each(function() {
                    $(this).find('img').removeAttr('style');
                });
                normalizeHeights();
            });
        }
    }
    $(window).on('load', carouselNormalization);
于 2019-12-30T18:14:58.313 回答
0

您可以在 css 文件中使用以下行:

ul[rn-carousel] {
 > li {
 position: relative;
 margin-left: -100%;

 &:first-child {
   margin-left: 0;
   }
  }
}
于 2016-07-18T22:43:03.710 回答
0

这个 jQuery 函数对我来说效果最好。我在 WordPress 主题中使用 bootstrap 4,并且使用了完整的 jQuery 而不是 jQuery slim。

// Set all carousel items to the same height
function carouselNormalization() {

    window.heights = [], //create empty array to store height values
    window.tallest; //create variable to make note of the tallest slide

    function normalizeHeights() {
        jQuery('#latest-blog-posts .carousel-item').each(function() { //add heights to array
            window.heights.push(jQuery(this).outerHeight());
        });
        window.tallest = Math.max.apply(null, window.heights); //cache largest value
        jQuery('#latest-blog-posts .carousel-item').each(function() {
            jQuery(this).css('min-height',tallest + 'px');
        });
    }
    normalizeHeights();

    jQuery(window).on('resize orientationchange', function () {

        window.tallest = 0, window.heights.length = 0; //reset vars
        jQuery('.sc_slides .item').each(function() {
            jQuery(this).css('min-height','0'); //reset min-height
        }); 

        normalizeHeights(); //run it again 

    });

}

jQuery( document ).ready(function() {
    carouselNormalization();
});

资源:

https://gist.github.com/mbacon40/eff3015fe96582806da5

于 2018-08-28T19:44:59.633 回答
0
 .className{
 width: auto;
  height: 200px;
  max-height: 200px;
   max-width:200px
   object-fit: contain;
}
于 2017-10-18T05:28:02.397 回答