保持对象中心固定,同时大小发生变化

Keep object centre fixed whilst size changes

我有一个使用 CSS 关键帧扩展的圆圈,定位固定。问题是,随着圆圈大小的变化,圆心移动(而左上角保持不变)。如何确保中心在动画期间固定?有没有办法指定 div 的 "origin" 使其不在左上角?

<div id="circle"></div>

#circle {
  position: fixed;
  background: #07F;
  border-radius: 50%;
  animation: expand linear 3s infinite;
  top: 10px;
  left: 10px;
}

@keyframes expand {
  0% {
    width: 100px;
    height: 100px;
  }
  100% {
    width: 500px;
    height: 500px;
  }
}

this JSFiddle

试试这个:

#circle {
  position: fixed;
  background: #07F;
  border-radius: 50%;
  animation: expand linear 3s infinite alternate;
  top: calc(10px + 50px); /* 10px + (half of the initial height) */
  left: calc(10px + 50px); /* 10px + (half of the initial width) */
  transform: translate(-50%, -50%)
}

@keyframes expand {
  0% {
    width: 100px;
    height: 100px;
  }
  100% {
    width: 500px;
    height: 500px;
  }
}
<div id="circle"></div>

另一种选择,你可以做的是使用 transform - scale 属性 增加尺寸,然后 transform-origin 保持居中:

#circle {
  position: fixed;
  background: #07F;
  border-radius: 50%;
  animation: expand linear 3s infinite alternate;
  top: 10px;
  left: 10px;
  transform-origin: center;
  width: 100px;
  height: 100px;
}
@keyframes expand {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(5);
  }
}
<div id="circle"></div>