SVG 선, 원, 사각형으로 매우 간단한 얼굴
2767 단어 SVG
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>
Reference
이 문제에 관하여(SVG 선, 원, 사각형으로 매우 간단한 얼굴), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/39_isao/items/7570696f2587d5a1bb03텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)