SVG Bear (Copy 5072)
✨ นางสาวรวิพร สมอฤทธิ์
<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"> <svg x=5 y=5> <ellipse x=9 y=34 cx="15" cy="28" rx="12" ry=3 fill="#66ff66" /> <ellipse cx="15" cy="15" rx="12" ry="15" fill=#66ff66 /> <rect x=3 y=14 fill="#66ff66" width="24" height="15" rx=1 ry=1 /> </svg> <svg> <circle cx="15" cy="14" fill="#280000" r="0.8"></circle> <circle cx="25" cy="14" fill="#280000" r="0.8"></circle> </svg> <svg x=5 y=5> <ellipse cx="15" cy="11" rx="4" ry="2" fill="Yellow" /> <line x1="11" y1="11" x2="19" y2="11" stroke="#cc9900" stroke-width="0.3"/> </svg> <svg x=5 y=5> <ellipse cx="15" cy="22" rx="8" ry="8" fill="#ffffcc" /> </svg> <svg x=5 y=5> <ellipse cx="9" cy="30.5" rx="3" ry="1" fill="#cc9900" /> <ellipse cx="21" cy="30.5" rx="3" ry="1" fill="#cc9900" /> </svg> <svg> <line x1=12 y1=12 x2=18 y2=12 stroke="#280000" stroke-width="0.6" /> <animate attributeName="y" values="-3;-2;0;-2;-3;-3;" dur="2s" repeatCount="indefinite" /> </svg> <svg> <line x1=22 y1=12 x2=28 y2=12 stroke="#280000" stroke-width="0.6" /> <animate attributeName="y" values="0;-2;-3;-2;0;" dur="2s" repeatCount="indefinite" /> </svg> <svg> <ellipse transform="rotate(-30)" cx="-3" cy="23" rx="5" ry="1.5" fill="#66ff66" /> <ellipse transform="rotate(30)"cx="37.5" cy="3" rx="5" ry="1.5" fill="#66ff66" /> </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>