SVG-MONKEY
✨ คาเนกิ เคน
<html> <head> <title>Let's Start </title> <style> body{ background:#333; margin:1em; font-family:sans-serif; } svg{ background:#eee; } </style> </head> <body> <svg viewBox="0 0 40 40"> <circle cx="4" cy="15" fill="hsl(30,70%,10%)" r="6"></circle> <circle cx="5" cy="15" fill="hsl(30,70%,60%)" r="5"></circle> <svg x="20"> <circle cx="16" cy="15" fill="hsl(30,70%,10%)" r="6"></circle> <circle cx="15" cy="15" fill="hsl(30,70%,60%)" r="5"></circle></svg> <ellipse cx="20" cy="22" rx="16" ry="12" fill="hsl(30,70%,10%)" /> <ellipse cx="20" cy="13" rx="14" ry="12" fill="hsl(30,70%,10%)" /> <svg> <ellipse cx="15" cy="14" rx="8" ry="10" fill="hsl(30,70%,60%)" /> </svg> <svg x="10"> <ellipse cx="15" cy="14" rx="8" ry="10" fill="hsl(30,70%,60%)" /> </svg> <svg y="3"> <ellipse cx="20" cy="20" rx="15" ry="9.5" fill="hsl(30,70%,60%)" /> <ellipse cx="20" cy="20" rx="5" ry="2" fill="hsl(30,70%,30%)" /> </svg> <ellipse cx="20" cy="29" fill="hsl(10,70%,40%)" rx="10" ry="10"> <animate attributeName="rx" values="2;2;3;2;2" dur="4s" repeatCount="indefinite" /> <animate attributeName="ry" values="1;1;2;1;1" dur="5s" repeatCount="indefinite" /> </ellipse> <svg> <ellipse cx="14" cy="14" rx="4" ry="5" fill="hsl(30,70%,90%)" /> <ellipse cx="14" cy="14" rx="3" ry="4" fill="hsl(30,70%,10%)" /> <circle cx="15.5" cy="12" fill="white" r="1"></circle> </svg> <svg x="10"> <ellipse cx="16" cy="14" rx="4" ry="5" fill="hsl(30,90%,90%)" /> <ellipse cx="16" cy="14" rx="3" ry="4" fill="hsl(30,70%,10%)" /> <circle cx="17.5" cy="12" fill="white" r="1"></circle> </svg> <!-- 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"/> --> </svg> </body> </html>