我需要在加载插件时获得幻灯片的高度,不幸的是它在加载幻灯片之前出现onInit fires并返回高度0,在第一张幻灯片显示后我可以调用onBeforeChange给我高度我需要,但只有在第一张幻灯片显示后才会显示。
onBeforeChange:function()
{
$(".slick-slide").each(function()
{
var h=($(this).height()-500)/2;
$(this).css("margin-top",-h);
$(this).find(".section_title").css("margin-top",h);
$(this).find(".bullet").css("margin-bottom",h);
});
}
在第一张幻灯片达到高度时,我是如何做到这一点的?
由于