私はあなたが達成したいものにとして正しく理解していれば、あなたは現在のスライド
$("#slides li:nth-child("+$actualtarget+")")
ではなく、コンテナ
上で操作を実行したい少しここ
https://codepen.io/poweroftheforce/pen/PGjErq
をあなたのコードを修正
$('#slides').
こうして取り除いた
$('#slides').fadeTo(3000, 0.0);
となるように、「生きている」クラスの現在または次の利用可能なスライドを設定ゼロには不透明だ設定と不透明度にそれをアニメーションに加えて
$("#slides li:nth- child("+$actualtarget+")").addClass('alive').css('opacity', '0').animate({
opacity: 1
}, 5000, function() {
// Animation complete.
});
に
$("#slides li:nth-child("+$actualtarget+")").addClass('alive');
を追加/変更1(フェードイン)
・ホープ、このことができます:)