要素が右に移動しながら (5000ms) フェードイン (1000ms) し、最後に要素がまだ右に移動している間に再びフェードアウト (4000ms、期間 1000ms) するアニメーションが必要です。
最初の 2 つの部分は機能しましたが、最後の部分 (不透明度: 0) のタイミング設定について助けが必要です。
これが私のコードです:
$(document).ready(function(){
var truck = $('.truck');
truck.css("opacity", "0");
truck.animate({
opacity: 1
}, {
queue: false,
duration: 1000
}).animate({
right: 15
}, 5000).animate({
opacity: 0
}, 1000);
});
ありがとうございました。