0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SVG で描画する

Last updated at Posted at 2018-01-06

SVG の描画サンプルです。

svg_jan0601.png

index.html
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" />
<title>SVG</title>
</head>
<body>
<h2>SVG</h2>

<svg width="500" height="400">
<circle cx="100" cy="60" r="50" fill="#e74c3c" stroke=black />
<ellipse cx="100" cy="170" rx="20" ry="40" fill="red" stroke="red" />
<ellipse cx="100" cy="300" rx="60" ry="20" fill="#3498db" stroke="#333333" />
<rect x="200" y="20" width="250" height="80" fill=blue stroke=blue />
<rect x="200" y="120" width="250" height="80" rx="20" ry="20" fill=yellow stroke="#333333" />
<line x1="200" y1="250" x2="350" y2="350" stroke="#333333" />
<line x1="250" y1="250" x2="400" y2="350" stroke=magenta stroke-width="10" />
<line x1="300" y1="250" x2="450" y2="350" stroke="#333333" stroke-width="5" stroke-dasharray="5 10" />
<polyline points="20,180 70,120 120,120 170,180 120,240 70,240" fill="none" stroke=green stroke-width="5" />
<polygon points="0,0 500,0 500,400 0,400" fill="none" stroke=cyan stroke-width="5" />
</svg>

<hr />
version Jan/07/2018 PM 17:14<p />
</body>
</html>

svg を外部ファイルにして jQuery で読み込むサンプルです。
jQuery で SVG ファイルを読み込む

参考にしたページ
SVG要素で図形を描画【HTML5 実践編】

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?