2

私はRaphael.jsSVGをいじっていて、いくつかを Raphael オブジェクトにインポートしたいと考えています。https://twitter.com/RaphaelJSからいくつかの Twitter 投稿を確認しました。ここで、パス ポイントをコピー アンド ペーストして使用できると言っています。残念ながら、私はそれを機能させることができません。

私が単純にやりたいのは、この単純な svg です。

<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="0px"
 width="841.89px" height="595.28px" viewBox="0 0 841.89 595.28" enable-background="new 0 0 841.89 595.28" xml:space="preserve">
<polyline fill="#CBBBA0" stroke="#000000" stroke-miterlimit="10" points="272.343,345.194 307.418,535.492 349.955,342.955 "/>
<circle fill="#E30613" stroke="#000000" stroke-miterlimit="10" cx="277.194" cy="282.881" r="62.313"/>
</svg>

Raphael-Objects に。たぶん、これを解決する方法についていくつかのアイデアがあります。

私はそれが次のように可能であると考えました:

var paper = Raphael(10, 50, 320, 200);
paper.path(["272.343,345.194 307.418,535.492 349.955,342.955"])

残念!動作しません

ありがとう

4

1 に答える 1