私には4つdiv
の'またはtd
'があり、いずれかをクリックすると、それらすべてが左にスライドし、残りの3つが消え、クリックした1つが残るはずです。
きちんとしたアニメーション効果も欲しいです。
私はこれを試しましたが、スタイルにいくつかのエラーがあります:
//xControl is a link inside the td
$(xControl).parent().siblings().each(function fn() {
setTimeout(function fn() {
$(this).animate({ width: 'toggle' });
}, 800);
});
私も試しました:
$(this).hide("slide", { direction: "right" }, 500);
これも機能しません。
私は何が間違っているのですか?