<ellipse cx="150" cy="75" rx="10" ry="40" fill="blue">
<animate id="A" attributeName="rx" begin="click"
end="A.begin+4"
onbegin="alert('started')" onend="alert('stopped')"
dur="4s" values="10;110;10" repeatCount="indefinite"/>
</ellipse>
上述代码在Firefox中正常运行,但在Chrome中无效。 在Firefox中,警报显示在动画的开头和结尾。 我怎样才能在Chrome中实现这一目标?