グループを作成してからスケーリングしました。他の属性ではなく、スケーリングされたグループの形状のみをコピーしたいです。特に、変換されたマトリックスを取り除きたいです。スケーリングされたグループとは独立した新しいグループが必要です。これが可能かどうかわかりませんか?ここにコード:
車のグループ:
<svg id="game" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" onload="loadFunction()" >
<!-- Car -->
<g id="exCar" x="50" y="500" transform="" >
<path id="front" d="M 40 500 Q 110 450 110 500 L 40 500" fill="pink" stroke="black" />
<path id="window" d="M 40 500 L 50 530 L 100 530 L 110 500 L 40 500 "stroke="black" />
<path id="sides" d="M 40 500 L 40 580 L 50 560 Q 55 550 50 530 L 40 500 M 110 500 L 110 580 L 100 560 Q 95 550 100 530 L 110 500" fill="pink" stroke="black" />
<path id ="back" d="M 40 580 L 100 560 L 40 580" fill="pink" stroke="blue" />
<path id="wheels" d="M 40 475 L 30 475 L 30 500 L 40 500 z M 110 475 L 120 475 L 120 500 L 110 500 z M 40 545 L 30 545 L 30 570 L 40 570 z" fill="yellow" stroke="black" />
<image id="carpicture2" x="50" y="455" xlink:href="img.jpg"></image>
<text id="carName" x="50" y="575"></text>
</g>
</svg>
関数を呼び出すボタン:
<rect x="120" y="600" width="80" height="30" stroke:#FF0066" onclick="cloning()"/>
コピーする関数:
function cloning() {
var newCar = document.getElementById("exCar").cloneNode(true);
newCar.setAttribute("x", 400);
newCar.setAttribute("y", 600);
document.getElementById("game").appendChild(newCar);
alert("!!!!");
};
スケーリング :
document.getElementById("exCar").setAttribute(
"transform",
"matrix(" + result / 100 + ",0,0," + result / 100 + ","
+ (x - (result / 100 * x)) + "," + (y - (result / 100 * y))
+ ")");
(結果はスライダーバーから計算されます)