js 字符串转换为SVG
时间: 2024-06-14 12:04:00 浏览: 318
convert-svg-image:将 svg 字符串转换为任何图像
以下是将JS字符串转换为SVG的示例:
```javascript
// 创建一个SVG元素
var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
svg.setAttribute("width", "100");
svg.setAttribute("height", "100");
// 创建一个文本元素
var text = document.createElementNS("http://www.w3.org/2000/svg", "text");
text.setAttribute("x", "10");
text.setAttribute("y", "20");
text.textContent = "Hello, SVG!";
// 将文本元素添加到SVG元素中
svg.appendChild(text);
// 将SVG元素添加到文档中
document.body.appendChild(svg);
```
阅读全文