是否可以在 SVG 中监听<image>
加载事件?如果是,该怎么做?
问问题
15047 次
2 回答
17
是的,这是可能的。
在标记中:
<image xlink:href="example.png" width="10" height="10"
onload="alert('loaded')"/>
见jsfiddle。
在脚本中:
<script>
var img = document.createElementNS("http://www.w3.org/2000/svg", "image");
img.addEventListener('load', function() { alert('loaded'); });
// or alternatively:
// img.onload = function() { alert('loaded'); }
img.width.baseVal.value = 100;
img.height.baseVal.value = 100;
img.href.baseVal = "example.png";
</script>
见jsfiddle。
于 2012-07-09T10:27:42.500 回答
8
我发现这不适用于使用 D3 创建的 SVG 对象,但这里的答案很有效:
例如,这有效:
var img = innerG.append("image")
.attr('onload', function() {
console.log('loaded');
})
.attr("xlink:href", src)
.attr("width", size)
.attr("height", size);
但这不起作用:
var img = innerG.append("image")
.attr("xlink:href", src)
.attr("width", size)
.attr("height", size);
img.addEventListener('load', function() { console.log('loaded'); });
于 2014-03-13T09:51:54.807 回答