キャプションアニメーションを修正するためのスライダー遅延onSlideBefore
または他の代替手段を配置する解決策はありますか?
$('.bxslider').bxSlider({
auto: true,
onSlideBefore: function(){
$("figcaption").css({
"top" : "100%"
});
},
onSlideAfter: function(){
$("figcaption").css({
"top" : "0"
});
}
});