我正在尝试使用SMIL将文本键入到嵌入在 SVG 中的字段中。我每晚在 Chrome 和启用 SMIL 的 Firefox 中都尝试了以下代码,但没有效果:
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:html="http://www.w3.org/1999/xhtml">
<foreignObject>
<html:input type="text" value="">
<set attributeName="value" to="Hello World"
begin="0" dur="10s" fill="freeze" />
</html:input>
</foreignObject>
</svg>
文本字段出现,但仍为空。所以,我想我会注册 beginEvent 并手动进行替换。为了测试这些事件,我添加了:
<rect id="rect" x="0" y="0" width="10" height="10">
<animate id="dx" attributeName="x" attributeType="XML"
onbegin="console.log('onbegin')"
begin="0s" dur="1s" fill="freeze" from="0" to="-10" />
</rect>
以及从事件模型中有意义的 javascript :
window.addEventListener( 'load', function() {
function listen( id ) {
var elem = document.getElementById( id )
elem.addEventListener( 'beginEvent', function() {
console.log( 'begin ' + id )
}, false )
elem.addEventListener( 'endEvent', function() {
console.log( 'end ' + id )
}, false )
}
listen( 'rect' )
listen( 'dx' )
})
rect
但是在任一animate
浏览器中都没有触发事件。下一个合乎逻辑的步骤似乎是模拟动画(ala. FakeSmile),但如果可能的话,我想使用浏览器的动画计时器。