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

4

1 回答 1

1

您可能已经为错误 81995编写了一个补丁,或者花钱请其他人为您做这件事,以使其在 webkit 中工作。

于 2012-10-08T06:44:33.707 回答