by shigemk2

当面は技術的なことしか書かない

要素のスライドとフェードアウトを同時に実現する

javascript - fadeOut() and slideUp() at the same time? - Stack Overflow

$(obj).animate({left: 0, opacity: 0},
               {duration: 600, easing: "swing"});

animate関数で、left: ○○とopacity: 0と組み合わせて書けばいい。

因みに、フェードインはopacity: 1です。

$(obj).animate({left: 0, opacity: 1}, // opacity: 1だお
               {duration: 600, easing: "swing"});