LoginSignup
2
1

More than 5 years have passed since last update.

SVG 線、円、四角形 で超かんたんな顔

Last updated at Posted at 2016-06-03

スクリーンショット 2016-06-03 17.17.38.png

svg入門で超簡単な顔

rect
circle
line
の使い方の備忘録

hoge.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>svg</title>
</head>
<body>
    <svg width="500" height="500">

        <!-- 目 -->
        <circle cx="200" cy="100" r="20" fill="black"/>
        <circle cx="100" cy="100" r="20" fill="black"/>

        <!-- 鼻? -->
        <line x1="150" y1="130" x2="150" y2="180" stroke-width="5" stroke="black"/>

        <!-- 口 -->
        <rect x="50" y="200" width="200" height="20" fill="red"/>

    </svg>

</body>
</html>
2
1
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
2
1