clip_path_2.svg 340 B

123456789
  1. <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  2. <defs>
  3. <clipPath id="myClip">
  4. <rect x="0" y="10" width="100" height="35" />
  5. <rect x="0" y="55" width="100" height="35" />
  6. </clipPath>
  7. </defs>
  8. <circle cx="50" cy="50" r="50" clip-path="url(#myClip)" />
  9. </svg>