ホームページ >ウェブフロントエンド >htmlチュートリアル >SVG グラフィック エンコーディング_html/css_WEB-ITnose
Rectangle :rect
<svg> <rect fill="red" height="100" id="rect" stroke="gray" stroke-width="10" width="100" x="20" y="20"></rect></svg>角丸長方形: rx、ry (円の中心の座標) の値を設定するだけです
<svg> <circle id="circle"cx="100" cy="80" r="50" stroke="gray" stroke-width="10" fill="red"> </svg>Circle: Circle
<svg class="grid-50"> <rect fill="red" height="100" id="rect" stroke="gray" stroke-width="10" width="100" x="20" y="20"></rect></svg>Ellipse
<svg > <ellipse rx=100 ry=30 cx=150 cy=60 fill="yellow" stroke="gray" /> </svg>線分: 線(2つの点が直線を決定します)
<svg> <line x1="0" y1="0" x2="200" y2="20" fill="gray" stroke="gray" stroke-width="2" /></svg>Polyline:po lyline (複数の座標点を設定しています)
(0,0) は無効であるため使用できないことに注意してください
<svg> <polyline points="0,0 0,20 20,20 20,40 40,40" fill="white" stroke="gray" stroke-width="2" /></svg>Polygon:polygon
もちろん、より複雑なグラフィックスの場合は、次の操作のみが必要です各点の座標を知っています
<svg > <polygon points="50,50 0,100 100,100 50,50" fill="blue" stroke="gray" stroke-width="1"> </svg>Path: path (上記のグラフィックスはすべてパスで描画できます)
M = moveto //座標を
ルールに従って書かなければなりません
<svg> <path d="M50 50 L200 50 L200 0 L50 0 Z" fill="blue" stroke="gray" stroke-width="2" /> </svg>
デモ: http://2.liteng.sinaapp.com/svg/index.html
元のアドレス URL: http://liteng.org /ノード/ 51