<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 中实现这一点?