2012-03-18 57 views
0

我使用jQuery來顯示div標籤,並保持動畫10px的從底部 但每當我的功能與iframe上升復位jQuery的動畫完成後,div標籤

它飄起來也不會再次重新定位

function Show_NotifyDiv() { 
     $("#div_NotificationOuter").css({ "bottom": "2px", "right": "5px" }); 
     $("div_NotificationOuter").stop(); 
     $('#div_NotificationOuter').hide(); 
     $("#div_NotificationOuter").show(1000); 
     $("#div_NotificationOuter").animate({ bottom: '+=10px' }, 4000); 
} 
+1

你有一個語法錯誤行3人失蹤''#這 – elclanrs 2012-03-18 10:10:31

回答

0

確保母公司事業部是100%的高度,因爲,你正在使用底部

+0

答案是沒有意義的... – elclanrs 2012-03-18 10:13:19

+0

你有一個演示? – 2012-03-18 11:23:59

+0

$(「div_NotificationOuter」)。stop(); 將其替換爲$(「#div_NotificationOuter」)。 – 2012-03-18 11:24:40