svg 로 타원 그리기



html)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" 
          content="width=device-width, height=device-height, 
                     minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0">
    <title>Insert title here</title>
</head>
 
<body>
    <?xml version="1.0" ?>
    <svg xmlns="http://www.w3.org/2000/svg" width="300px" height="400px" version="1.1">
        <!-- 
        cx : 중점 x좌표
        cy : 중점 y좌표
        rx : 가로 반지름 크기
        ry : 세로 반지름 크기
         -->
        <ellipse cx="100" cy="100" rx="75" ry="50"
                 style="fill:orange; stroke:green; stroke-width:3;" />
    </svg>
</body>
</html>
cs



결과

+ Recent posts