我正在使用bootstrap轮播,但是在下一张幻灯片放映时我注意到了跳跃。
由于我希望这能有所回应,我无法真正设定一个固定的高度。
var $carousel_height = $('#myCarousel .item img').outerHeight();
var $carousel_height2 = $('#myCarousel .item img').css("height");
console.log($carousel_height );
console.log($carousel_height2 );
$('#myCarousel').css('height', $carousel_height2);//apply
我有点使用上面的代码,但两者都给我0px,我相信因为我将图片标签的宽度设置为100%。
那么有没有办法将高度设置为等于第一个滑动高度? 或任何其他方式不跳跃?
谢谢,