我在线有SVG格式的模式集合。 grid.kevinbock.de
现在我认为在线绘制它们会很酷,至少用SVG填充一些“onclick = fill”的东西......
我无法找到这方面的教程,并想知道你是否可以帮助我如何为此设置代码......
以下是SVG格式的网格示例:
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="50%"
viewBox="0 0 800 600" preserveAspectRatio="xMidYMid slice" width="100%" height="100%" enable-background="new 0 0 800 600" xml:space="preserve">
<polygon fill="none" stroke="#000000" stroke-width="0.25" stroke-miterlimit="10" points="653.458,599.182 653.458,585.273
665.501,592.229 677.546,599.182 665.501,606.135 653.458,613.09 "/>
<polygon fill="none" stroke="#000000" stroke-width="0.25" stroke-miterlimit="10" points="653.458,571.367 653.458,557.461
665.501,564.414 677.546,571.367 665.501,578.32 653.458,585.273 "/>
<polygon fill="none" stroke="#000000" stroke-width="0.25" stroke-miterlimit="10" points="653.458,543.553 653.458,529.646
665.501,536.602 677.546,543.553 665.501,550.508 653.458,557.461 "/>
... and so on...
</svg>
进一步的问题是: 在网格中绘制线条时是否有可能获得类似捕捉的东西? 靠近矢量点? 有没有办法插入“后退/撤消”-Button并保存文件?
答案 0 :(得分:0)
要显示您可以在html代码中使用<svg>
标记。要操纵svg,您可以使用javascript
。您可以像常规DOM
文档一样操纵SVG绘图。例如:
<html>
<script>
function colorChange()
{
var el = document.getElementById("mycircle");
el.style.fill = "blue";
}
</script>
<svg>
<circle onClick="colorChange();" id="mycircle" cx="100" cy="50" r="40" stroke="black"
stroke-width="2" fill="red"/>
</svg>
</html>
请参阅此jsfiddle以查看其实际效果。