我嘗試將ImageElement
添加到GElement
。雖然<image>
元素正確創建在<g>
下,但它沒有顯示出來。如果我複製由Dart創建的<image>
元素,並將其添加到html文件中,則會顯示。我使用下面的代碼片段:Dart svg ImageElement沒有顯示
ImageElement aImage = new ImageElement();
aImage.setAttribute('x', '$x');
aImage.setAttribute('y', '$y');
aImage.setAttribute('width', '30');
aImage.setAttribute('height', '30');
aImage.setAttribute('xlink:href', 'http://icons.iconarchive.com/icons/deleket/sleek-xp-software/256/Yahoo-Messenger-icon.png');
group.append(a);
什麼是「GroupElement」?在html5中我沒有看到任何''標籤。 –
[GElement](https://api.dartlang.org/docs/channels/stable/latest/dart_svg/GElement.html) – ringstaff