2011-10-04 67 views

回答

2

使用animate函數來更改元素的大小,位置和不透明度。

$(element).animate({ 
    opacity:0, 
    left: '-=30', 
    top: '-=30', 
    width: 630, 
    height:330 
}, 400); 
+0

謝謝你。有用的代碼片段。 – alt

相關問題