<rect x="横位置" y="縦位置" width="横幅" height="高さ"
rx="角の丸みの横幅" ry="角の丸みの縦幅" />
<circle cx="中心の横位置" cy="中心の縦位置" r="半径" />
<ellipse cx="中心の横位置" cy="中心の縦位置"
rx="横方向の半径" ry="縦方向の半径" />
<line x1="開始横位置" y1="開始縦位置" x2="終了横位置" y2="終了縦位置"/>
<polyline points="位置情報" />
<polygon points="位置情報" />
<text x="横位置" y="縦位置" />
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="300px" height="300px" xmlns="http://www.w3.org/2000/svg"> <text x="10" y="20">テキストの描画例</text> <rect x="20px" y="50px" width="100px" height="100px" fill="red" stroke="blue" stroke-width="2px" /> <circle cx="150px" cy="125px" r="50px" fill="green" stroke="black" stroke-width="5px" /> <line x1="150px" y1="150px" x2="250px" y2="200px" stroke="blue" stroke-width="10px" /> <polygon points="100 100 20 200 100 200 20 100" fill="cyan" stroke="magenta" stroke-width="5px" /> </svg>
<< 前へ | 次へ >> |