SVG元素SET不工作accessKey()

时间:2014-08-23 14:15:19

标签: html browser svg svg-animate

简单示例,将颜色文本从蓝色更改为红色:

<svg width="500" height="500">

   <text id="TextElement" x="20" y="200"
   style="font-family:Verdana, sans-serif; font-size:13; stroke:blue" >
   Now you see me!
   <set attributeName="stroke" attributeType="CSS" to="red" begin="3s" fill="freeze"/>
   </text>

</svg>

开始=“3s”工作正常但

<svg width="500" height="500">

   <text id="TextElement" x="20" y="200"
   style="font-family:Verdana, sans-serif; font-size:13; stroke:blue" >
   Now you see me!
   <set attributeName="stroke" attributeType="CSS" to="red" begin="accessKey(a)" fill="freeze"/>
   </text>

</svg>

开始=“accessKey(a)”时,它无效。

浏览器:Google Chrome 35.0.1916.153(官方版本274914)。

P.S。我只需要SVG 中的accessKey(),而不是JavaScript或其他......

FireFox v17和v31中的

更新:,accessKey(a)正常工作

0 个答案:

没有答案