Card.svg 655 B

12345678910111213
  1. <g xmlns="http://www.w3.org/2000/svg" id="{this.name}"
  2. transform="translate({this.x},{this.y})">
  3. <rect fill="#FFFFFF" x="0" y="0"
  4. width="40" height="60" rx="4" style="display: inline;"/>
  5. <circle fill="{this.suit}" cx="20" cy="43" r="7">
  6. <animate begin="0" fill="freeze" attributeName="r"
  7. values="4;5;6;7;8;6;5;4" dur="1s"
  8. calcMode="linear" repeatCount="indefinite"/></circle>
  9. <text dx="20" x="0" y="26.4873125"
  10. font-family="Exo 2" font-size="24"
  11. font-weight="bold" letter-spacing="-2" text-anchor="middle"
  12. fill="{this.suit}">{this.value}</text></g>