Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有许多彼此靠近的 div(框)水平向右浮动,每个都有自己的关闭按钮。当我关闭一个 div 时,其他人向右移动以关闭已关闭 div 的空间。
如果我想让他们慢慢移动,我需要做什么?
请看这个例子:
`http://jsfiddle.net/2t9A6/2/`
当我取消选中复选框时,我想慢慢移动其他 div(选中和未选中)..
请指教。谢谢。
jQuery 动画
我不完全确定你在问什么。
但这可能会对您有所帮助。
试试 .animate
$("div").animate({left:'250px'});