0

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>

さらなる質問は次のとおりです。グリッドに線を描画するときにスナップのようなものを取得する可能性はありますか? ベクトルポイントの近く?「戻る/元に戻す」ボタンを挿入してファイルを保存する方法はありますか?

4

1 に答える 1

1

<svg>表示するには、html コードでタグを使用するだけです。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を参照して、実際の動作を確認してください。

于 2013-05-26T12:29:47.110 に答える