我有四个div
's 或td
's,我想要做的是,如果我点击任何一个,那么它们都向左滑动,剩下的三个应该消失,而我点击的那个应该保留。
我还想要一个整洁的动画效果。
我已经尝试过了,但它给出了一些样式错误:
//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);
这也不起作用。
我究竟做错了什么?