我有一个中心点位于 (100, 100) 的 svg 图形。
<g id="centre">
<circle cx="100" cy="100" r="2"/>
</g>
一条路径(像一个圆圈)应该围绕它并跳动 - 我的意思是,它应该从 0 缩放到一个 value,集中在点 (100,100) 上。在执行此操作时,脉冲也应该从 opacity=0 开始,到 opacity=0.5 并返回 opacity=0。 (我不想使用而不是路径。)
整个事情看起来像这样:
<g transform="translate(100,100)">
<g id="pulse" >
<radialGradient id="SVGID_4_" cx="100" cy="100" r="21.2498" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#006837" />
</radialGradient>
<path opacity="0.5" fill="url(#SVGID_4_)" stroke="url(#SVGID_4_)" stroke-width="0.5" stroke-miterlimit="10" d="M120.864,99.676
c0,11.599-9.401,21-21,21c-11.598,0-21-9.401-21-21c0-11.598,9.402-21,21-21c6.705,0,12.679,3.144,16.523,8.037
C119.193,90.281,120.864,94.783,120.864,99.676z" />
<animateTransform
attributeType="xml"
attributeName="transform"
type="scale"
from="0"
by="3"
dur="2s"
fill="freeze"
repeatCount="indefinite"
/>
<animate
attributeType="xml"
attributeName="fill-opacity"
from="0"
to="0"
values="0;0.5;0"
dur="2s"
repeatCount="indefinite"
fill="freeze" />
</g>
</g>
<g id="centre">
<circle cx="100" cy="100" r="2"/>
</g>
</svg>
它不能按我的意愿工作,脉冲从中间开始,但向下移动到右侧,同时按比例放大。有人知道怎么做吗?提前致谢。 (我查了其他几个帖子,但对我没有帮助)