Last active
May 7, 2023 00:42
-
-
Save temoki/02998d5a0556ebb8790b01a216b69358 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"> | |
<g> | |
<path d="M50,70 | |
Q50,35 90,35 | |
Q120,35 120,70 | |
Q120,100 90,100 | |
Q70,110 60,100 | |
Q40,100 50,70" | |
fill="yellow"/> | |
<circle cx="75" cy="50" r="5" fill="black"/> | |
<circle cx="105" cy="50" r="5" fill="black"/> | |
<path d="M85,60 | |
L100,55 | |
L85,50 | |
L100,65 | |
Z" | |
fill="orange"/> | |
<path id="left-leg" d="M65,100 | |
Q60,100 60,115 | |
M65,100 | |
Q70,115 80,115" | |
stroke="orange" stroke-width="3" fill="none"> | |
<animate attributeName="d" dur="0.5s" begin="0s" repeatCount="indefinite" | |
values="M65,100 | |
Q60,100 60,115 | |
M65,100 | |
Q70,115 80,115; | |
M65,100 | |
Q60,115 60,115 | |
M65,100 | |
Q70,100 80,115" /> | |
</path> | |
<path id="right-leg" d="M105,100 | |
Q110,115 120,115 | |
M105,100 | |
Q115,100 120,115" | |
stroke="orange" stroke-width="3" fill="none"> | |
<animate attributeName="d" dur="0.5s" begin="0s" repeatCount="indefinite" | |
values="M105,100 | |
Q110,115 120,115 | |
M105,100 | |
Q115,100 120,115; | |
M105,100 | |
Q110,100 120,115 | |
M105,100 | |
Q115,115 120,115" /> | |
</path> | |
<path d="M45,70 | |
Q20,60 45,50 | |
M135,70 | |
Q160,60 135,50" | |
stroke="yellow" stroke-width="6" fill="none"/> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment