3

我正在使用 BxSlider v4.1,我注意到使用“adaptiveHeight”选项会计算错误的幻灯片高度。原因是在背景中加载图像,同时在幻灯片之间导航。

有没有办法强制重新计算幻灯片高度?

我的第一个解决方案是在 css 中设置 min-height,但这不能正常工作。

4

1 回答 1

5

try moving the bxSlider initialization into $(window).load instead of $(document).ready.

Moving it to $(window).load waits for all images to completely load before initializing bxSlider, which will allow it to properly calculate the heights.

于 2013-08-09T22:59:38.093 回答