我使用 owl carousel 插件,找不到如何让导航垂直对齐中心,带有选项 autoHeight。
http://codepen.io/anon/pen/jJAHL
我试过像下面一样,但它只得到最后一个高度。
$(this_gallery).owlCarousel({
singleItem: true,
autoHeight : true,
navigation:true,
stopOnHover : true,
afterAction: function() {
var center_height = $(this_gallery).find('.owl-wrapper-outer').height();
console.log(center_height);
}
});