可以通过一个简单的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);
});
}
原文链接:https://www.f2er.com/js/159439.html