我想在从 1 1 缩放到 2 2 之后重新缩放我的圆圈。因为缩放后它突然来到 1 1 位置。但我想根据我给出的时间段重新调整它,比如比例圈..请欣赏你的答案来解决这个问题。下面出现我的秤类型代码..
<svg xmlns="http://www.w3.org/2000/svg" style="position: absolute; width: 150px; height: 150px;margin-left: 600px;top: 100px;">
<circle class ="cir" r="30" cx="34" cy="34" style="fill: red; stroke: blue; stroke-width: 2"/>
<animateTransform attributeName="transform"
type="scale"
from="1 1" to="2 2"
begin="0s" dur="4s"
repeatCount="indefinite"
/>
</svg>