所属分类:其他-游戏
$("[dui]").animate({ opacity: '0' }); // $("[dui]").fadeOut(500,function() { // // $(this).remove(); // abeer(); // });
或许不应该使用 fadeOut
td中包含了span,消失的只是span,td是外框布局不会有影响。
table td{padding:0;} .pai{width:25px;height:50px}
使用 jQ fadeOut,其本质是使用 display,display是不占地的。而且 table td 没有 width height,所以不就是会消失吗?可能需要这样
*{ box-sizing: border-box; } .pai{width:100%;height:100%} table td{width: 25px; height: 50px;}
当然也可以这样设计那样 ^_^