0
我有一個div:刪除CSS屬性()
#content_wrapper {
position: absolute;
left: 0px;
height: 50px;
width: 50px;
background-color: red;
}
我想.animate()
從left: 0px
一個div來right: 0px
所以我的嘗試是:
$('#content_wrapper').animate({'right': 0, 'left':''}, 2000, "easeOutBounce");
而且我試過
$('#content_wrapper').animate({'right': 0, 'left': 'auto'}, 2000, "easeOutBounce");
猜猜看,沒有工作。
有什麼建議嗎?謝謝
一般不是好主意,左,右位置應用到元素特別是對動畫 – charlietfl
@ charlietfl你爲什麼這麼說?只要元素是'position:absolute',我不會看到問題 –
@charlietfl那麼請給我一個建議,如何爲每個窗口大小從左到右設置動畫元素,而無需進行偏移量計算? – supersize