我有一个 div:
#content_wrapper {
position: absolute;
left: 0px;
height: 50px;
width: 50px;
background-color: red;
}
我想要.animate()
一个 div from left: 0px
toright: 0px
所以我的尝试是:
$('#content_wrapper').animate({'right': 0, 'left':''}, 2000, "easeOutBounce");
此外我试过
$('#content_wrapper').animate({'right': 0, 'left': 'auto'}, 2000, "easeOutBounce");
你猜怎么着,没用。
有什么建议么?谢谢