我正在使用jquery光滑滑块,下面是代码。 (部分)
$(document).ready(function(){
$('.content-slide-sub').slick({
fade: true,
infinite: true,
speed: 1000,
slidesToShow: 1,
adaptiveHeight: true,
autoplay: true,
autoplaySpeed: 4000,
arrows: true,
cssEase: 'linear',
prevArrow: $('.content-slide-prev-arrow.small'),
nextArrow: $('.content-slide-next-arrow.small')
});
});
光滑滑块内的图像有时无法正确渲染。
高度几乎为零。
我已经尝试过.init函数和延迟加载,如之前的问题所建议。
任何帮助将不胜感激!