Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使缩放效果缩放回某个高度和宽度而不是 0?我试过
$(element).hide("scale",{to:{width:600,height:500}},150);
但它不起作用
你试过jQuery 动画吗?
$("div").animate({width:"600", height:"500"},150);
http://jsfiddle.net/aQLD4/