SVG-63070085
✨ นายธิติวุฒิ หุ่นท่าไม้
<html> <head> <title>Let's Start </title> <style> body{ background:#333; margin:1em; font-family:sans-serif; } svg{ background:#eee; } @keyframes move{ from{transform: translatey(0px);} to{transform: translatey(0.2px);} } .ani{ animation: move 1s infinite alternate; } </style> </head> <body> <svg viewBox="0 0 40 40"> <svg> <ellipse cx="20" cy="24.5" rx="18" ry="15" fill="#b11f83" /> <ellipse cx="20" cy="29" rx="10" ry="8" fill="#a8dff2" /> <ellipse cx="20" cy="12" rx="1.1" ry="10" fill="#1aafe1" /> <ellipse cx="20" cy="29" rx="0" ry="6" fill="#1aafe1" /> <ellipse cx="20" cy="27.1" rx="9.3" ry="6.1" fill="#1aafe1" /> <ellipse cx="17" cy="28" rx="1" ry="2" fill="#000" /> <ellipse cx="23" cy="28" rx="1" ry="2" fill="#000" /> <ellipse cx="17.3" cy="27" rx="0.5" ry="0.75" fill="#fff" /> <ellipse cx="23.3" cy="27" rx="0.5" ry="0.75" fill="#fff" /> <line x1="19" y1="31" x2="19.5" y2="31.6" style="stroke:rgb(0,0,0);stroke-width:0.2" /> <line x1="21" y1="31" x2="20.5" y2="31.6" style="stroke:rgb(0,0,0);stroke-width:0.2" /> <ellipse cx="12" cy="29.5" rx="2" ry="4.7" fill="#f5b915" /> <ellipse cx="28" cy="29.5" rx="2" ry="4.7" fill="#f5b915" /> <polygon class="ani" points="6,26 9,30 11,27.5" style="fill:#f5b915" /> <polygon class="ani" points="5,32 10,33 11,27.5" style="fill:#f5b915" /> <polygon class="ani" points="9,36 8,30 12.95,33.5" style="fill:#f5b915" /> <polygon class="ani" points="35,26 32,30 29,27.5" style="fill:#f5b915" /> <polygon class="ani" points="35,32 29,33 30,28" style="fill:#f5b915" /> <polygon class="ani" points="27.4,33.7 31,36 33,31" style="fill:#f5b915" /> <text x="29" y="5" fill="black" style="font-size:1.5;">โอม-ธิติวุฒิ</text> </svg> </svg> </body> </html>