我知道有this个问题。不幸的是,为Bootstrap 3提出了解决方案doesn't work(尽管它为{2.3}的does)。那我该怎么办呢?
答案 0 :(得分:17)
可以使用简单的JavaScript代码段解决此问题:
function bsCarouselAnimHeight()
{
$('.carousel').carousel({
interval: 5000
}).on('slide.bs.carousel', function (e)
{
var nextH = $(e.relatedTarget).height();
$(this).find('.active.item').parent().animate({ height: nextH }, 500);
});
}