良い一日、
パスを作成し、SVG 要素内で「appendChild」を使用して表示するのが非常に困難です。
W3C の仕様、w3schools.com、ここのさまざまな投稿に注いだり、さまざまな方法で Google に忍び込もうとしたりすると、非常に単純なものが欠けているに違いありません。
FireFox と Chrome でテストしています。
したがって、単純なsvgファイルがあります:
<svg xmlns:svg ... id="fullPageID">
<image id="timer1" x="100" y="100" width="100px" height="100px" xlink:href="../component/timer/timer1.svg" />
<image id="battery1" x="200" y="200" width="100px" height="100px" xlink:href="../component/battery/30x20_ochre.svg" />
<script xlink:href="pathMaker.js" type="text/javascript" id="pathMaker" />
</svg>
私が使用しようとしているスクリプトは次のようになります。
newpath = document.createElementNS("SVG","path");
newpath.setAttribute("id", "pathIdD");
newpath.setAttribute("d", "M 1,97.857143 C 19.285714,96.428571 24.016862,131.64801 90.714286,132.85714 140.78762,133.7649 202.79376,66.16041 202.79376,66.16041");
newpath.setAttribute("stroke", "black");
newpath.setAttribute("stroke-width", 3);
newpath.setAttribute("opacity", 1);
newpath.setAttribute("fill", "none");
document.getElementById("fullPageID").appendChild(newpath);
シンプルなものを作りたいだけです。Javascript で SVG パスを生成するために Library にあるような複雑なソリューションを必要としないと考えるのは間違っていますか? ?
よろしくお願いします。