我在 react 中使用 react-motion 进行 CSS 转换。这个波纹管代码从左上角缩放我想要的输出。
<Motion defaultStyle={{ x: 0 }} style={{ x: spring(360) }}>
{(value) => {
return (
<div
style={{
width: value.x,
height: value.x,
animation: `scale 5s infinite`,
transform: `scale(1,1)`,
}}
>
{" "}
<this.ComponentName post={post} view={view} />
</div>
);
}}
</Motion>
我怎样才能使它从中心缩放?