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 设置动画,使其宽度从左到右为原始宽度的 80%?我想将右边距保持在原位,并将左边的边距向右移动。
感谢,并有一个愉快的一天。
设置float: right在您的元素上。然后:
float: right
$("#animate").click(function(){ $(this).animate({ width: $(this).width() * .8 }); });
jsFiddle
primatology 更快,但无论如何这是我的 jsFiddle,因为它增加了一些右边距:Demo。