SVG Path Arcs เคอร์บี้ (Copy 7757)
✨ elzaphaN TV
<html> <head> <title>Let's Start </title> <style> body{ background:#333; margin:1em; font-family:sans-serif; color:white; } svg{ background:white; } </style> </head> <body> <svg viewBox="0 0 100 100"> <!-- <circle r="3" cx="50" cy="50" style="fill:hsl(330,100%,50%,.5);stroke:black;stroke-width:.3"/> <ellipse cx="63" cy="50" rx="10" ry="4" style="fill:pink;stroke:black;stroke-width:.2"/> <ellipse cx="37" cy="50" rx="10" ry="4" style="fill:pink;stroke:black;stroke-width:.2"/> <ellipse cx="50" cy="37" rx="4" ry="10" style="fill:pink;stroke:black;stroke-width:.2"/> <ellipse cx="50" cy="63" rx="4" ry="10" style="fill:pink;stroke:black;stroke-width:.2"/> --> มือ <path fill="hsl(338, 92%, 76%)" stroke="black" stroke-width="0.2" d="M25,45 a3.5 2,30,0 1 ,-4 22" transform="translate(100, 0) scale(-1, 1) translate(59.5,0)"/> <path fill="hsl(338, 92%, 76%)" stroke="black" stroke-width="0.2" d="M80,45 a3.5 2,30,0 1,-4 22" transform="translate(4.5,0)"/> ตัว <ellipse cx="50" cy="50" rx="35" ry="35" style="fill:hsl(314, 88%, 83%);stroke:black;stroke-width:.1"/> ตาซ้าย <ellipse cx="35" cy="37" rx="4" ry="10" fill="hsl(247, 66%, 36%)" stroke="black" stroke-width="0.3"/> <ellipse cx="35" cy="35" rx="3.6" ry="7.5" fill="hsl(241 ,67, 36%)"/> ตาขาว <ellipse cx="35" cy="31.5" rx="2.5" ry="4.5" fill="hsl(241, 67%, 100%)"/> ตาขวา <ellipse cx="60"cy="37" rx="4" ry="10" fill="hsl(247, 66%, 36%)" stroke="black" stroke-width="0.3"/> <ellipse cx="60" cy="35" rx="3.6" ry="7.5" fill="hsl(241 ,67, 36%)"/> <ellipse cx="60" cy="31.5" rx="2.5" ry="4.5" fill="hsl(241, 67%, 100%)"/> แก้มซ้าย <ellipse cx="27" cy="50" rx="4" ry="2" fill="hsl(352, 86%, 65%)"/> แก้มขวา <ellipse cx="70" cy="50" rx="4" ry="2" fill="hsl(352, 86%, 65%)"/> <!-- Grid --> <defs> <pattern id="grid" viewBox="0,0,10,10" width="1%" height="1%"> <rect fill="#0001" width="1" height="10" x="1" y="0"/> <rect fill="#0001" width="1" height="10" x="3" y="0"/> <rect fill="#0001" width="1" height="10" x="5" y="0"/> <rect fill="#0001" width="1" height="10" x="7" y="0"/> <rect fill="#0001" width="1" height="10" x="9" y="0"/> <rect fill="#0001" width="10" height="1" x="0" y="1"/> <rect fill="#0001" width="10" height="1" x="0" y="3"/> <rect fill="#0001" width="10" height="1" x="0" y="5"/> <rect fill="#0001" width="10" height="1" x="0" y="7"/> <rect fill="#0001" width="10" height="1" x="0" y="9"/> <path d="M0 0 h10 L9 1 h-8 v8 L0 10 z" fill="#ff05"/> <path d="M10 10 h-10 L1 9 h8 v-8 L10 0 z" fill="#0f05"/> <rect fill="#0002" width="10" height=".1" x="0" y="9.9"/> <rect fill="#0002" width="10" height=".1" x="0" y="0"/> <rect fill="#0002" height="10" width=".1" y="0" x="9.9"/> <rect fill="#0002" height="10" width=".1" y="0" x="0"/> </pattern> </defs> <rect fill="url(#grid)" width="1000" height="1000" x="0" y="0" style="opacity:.5"/> </svg> </body> </html>