我在父 div 中有一个 div 列表。我现在在此列表的开头添加另一个 div。我正在这样做:
$('.list').prepend($('<div class="cell one "></div>'));
我的问题是如何为添加新 div 设置动画,以便其余 div 向下滑动。
这是 JSFiddle:http: //jsfiddle.net/2qbyB/
<div class="list">
<div class="cell two "></div>
<div class="cell three "></div>
<div class="cell four "></div>
</div>