私はdivを持っています:
#content_wrapper {
position: absolute;
left: 0px;
height: 50px;
width: 50px;
background-color: red;
}
からへ.animate()
div したいので、私の試みは次のとおりです。left: 0px
right: 0px
$('#content_wrapper').animate({'right': 0, 'left':''}, 2000, "easeOutBounce");
さらに試してみた
$('#content_wrapper').animate({'right': 0, 'left': 'auto'}, 2000, "easeOutBounce");
うまくいかなかったと思います。
助言がありますか?ありがとう