$(".fader").click(function (e) {
$('.fader').not('#' + $(this).attr("id")).fadeOut(function() {
$($(this).attr("id")).animate({width: "200",height: "200px", top: "-=-440px", left: "-=-367px"});
});
});
淡出作品,animate()
同样作品,但具有不同的元素。是要责备的语法还是我的 CSS 阻塞了animate()
?