私は次の div を持っています:
<div id = "shrink-test" style = "position:absolute;top:100px;left:50%;margin-left:-50px;height:100px;width:100px;background-color: red;" />
そして、jQuery を使用animate()
して div をそのサイズの半分に縮小しますが、div のアニメーションと位置を中央に保ちます。
私はしようとしています:
$("#shrink-test").animate(
{
height: 50,
width: 50
});
ただし、左上隅を参照として使用してdivを縮小します。その中心を基準点として使用するにはどうすればよいですか?
助けてくれてありがとう!