Back

SVG Drawing Match #333

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A jellyfish wearing a top hat, floating above a city skyline"

SVG by o1-mini (2024-09-12)
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1e3c72"/>
      <stop offset="100%" stop-color="#2a5298"/>
    </linearGradient>
    <linearGradient id="jellyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="50%" stop-color="#fad0c4"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </linearGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#2c3e50"/>
      <stop offset="100%" stop-color="#34495e"/>
    </linearGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="20" height="20" fill="#2c3e50"/>
      <rect x="2" y="5" width="4" height="15" fill="#34495e"/>
      <rect x="8" y="3" width="3" height="17" fill="#34495e"/>
      <rect x="14" y="6" width="5" height="14" fill="#34495e"/>
    </pattern>
  </defs>
  
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- City Skyline -->
  <g transform="translate(0, 200)">
    <rect width="300" height="100" fill="url(#cityPattern)" />
    <!-- Windows -->
    <g fill="#ecf0f1" opacity="0.8">
      <!-- Building 1 -->
      <rect x="20" y="10" width="10" height="10"/>
      <rect x="20" y="25" width="10" height="10"/>
      <rect x="20" y="40" width="10" height="10"/>
      <!-- Building 2 -->
      <rect x="50" y="5" width="10" height="10"/>
      <rect x="50" y="20" width="10" height="10"/>
      <rect x="50" y="35" width="10" height="10"/>
      <rect x="50" y="50" width="10" height="10"/>
      <!-- Building 3 -->
      <rect x="80" y="12" width="10" height="10"/>
      <rect x="80" y="27" width="10" height="10"/>
      <rect x="80" y="42" width="10" height="10"/>
      <!-- Additional buildings can be added similarly -->
    </g>
  </g>
  
  <!-- Jellyfish -->
  <g transform="translate(150, 100)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#jellyGradient)" stroke="#ff6f91" stroke-width="2"/>
    <!-- Tentacles -->
    <g fill="none" stroke="#ff6f91" stroke-width="2">
      <path d="M-20,20 C-25,40 -15,60 -20,80" stroke-linecap="round">
        <animate attributeName="d" values="
          M-20,20 C-25,40 -15,60 -20,80;
          M-20,20 C-30,45 -10,65 -20,80;
          M-20,20 C-25,40 -15,60 -20,80
        " dur="4s" repeatCount="indefinite"/>
      </path>
      <path d="M0,20 C-5,35 5,55 0,80" stroke-linecap="round">
        <animate attributeName="d" values="
          M0,20 C-5,35 5,55 0,80;
          M0,20 C-10,40 10,60 0,80;
          M0,20 C-5,35 5,55 0,80
        " dur="4s" repeatCount="indefinite"/>
      </path>
      <path d="M20,20 C25,40 15,60 20,80" stroke-linecap="round">
        <animate attributeName="d" values="
          M20,20 C25,40 15,60 20,80;
          M20,20 C30,45 10,65 20,80;
          M20,20 C25,40 15,60 20,80
        " dur="4s" repeatCount="indefinite"/>
      </path>
    </g>
    
    <!-- Top Hat -->
    <g transform="translate(0,-25)">
      <!-- Hat base -->
      <rect x="-20" y="-10" width="40" height="5" fill="url(#hatGradient)" />
      <!-- Hat crown -->
      <rect x="-10" y="-40" width="20" height="30" fill="url(#hatGradient)" />
      <ellipse cx="0" cy="-40" rx="10" ry="5" fill="#2c3e50"/>
    </g>
  </g>
  
  <!-- Additional Decorative Elements -->
  <circle cx="250" cy="50" r="5" fill="#f1c40f" opacity="0.6">
    <animateTransform attributeName="transform" type="scale" values="1;1.5;1" dur="3s" repeatCount="indefinite"/>
  </circle>
  <circle cx="50" cy="80" r="3" fill="#e74c3c" opacity="0.6">
    <animateTransform attributeName="transform" type="scale" values="1;1.3;1" dur="2.5s" repeatCount="indefinite"/>
  </circle>
</svg>
SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions for gradients and filters -->
  <defs>
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0a0a2a" />
      <stop offset="60%" stop-color="#2a1a4a" />
      <stop offset="100%" stop-color="#3a1a5a" />
    </linearGradient>
    
    <!-- Jellyfish body gradient -->
    <radialGradient id="jellyfishGradient" cx="50%" cy="40%" r="60%" fx="50%" fy="40%">
      <stop offset="0%" stop-color="#ff88ee" stop-opacity="0.9" />
      <stop offset="70%" stop-color="#aa44dd" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#8822aa" stop-opacity="0.6" />
    </radialGradient>
    
    <!-- Top hat gradient -->
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333333" />
      <stop offset="100%" stop-color="#000000" />
    </linearGradient>
    
    <!-- Hat band gradient -->
    <linearGradient id="hatBandGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#881188" />
      <stop offset="50%" stop-color="#aa3399" />
      <stop offset="100%" stop-color="#881188" />
    </linearGradient>
    
    <!-- Glow filter for jellyfish -->
    <filter id="jellyfishGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <!-- Moon glow -->
    <filter id="moonGlow" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>

    <!-- Building windows mask -->
    <mask id="buildingsMask">
      <rect x="0" y="0" width="300" height="300" fill="white"/>
      <rect x="0" y="0" width="300" height="200" fill="black"/>
    </mask>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars with twinkling effect -->
  <g id="stars">
    <circle cx="30" cy="40" r="1" fill="white" opacity="0.8">
      <animate attributeName="opacity" values="0.8;0.3;0.8" dur="4s" begin="0.1s" repeatCount="indefinite" />
    </circle>
    <circle cx="60" cy="20" r="1.2" fill="white" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.2;0.7" dur="3s" begin="0.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="100" cy="50" r="0.8" fill="white" opacity="0.9">
      <animate attributeName="opacity" values="0.9;0.4;0.9" dur="5s" begin="0.2s" repeatCount="indefinite" />
    </circle>
    <circle cx="150" cy="30" r="1" fill="white" opacity="0.8">
      <animate attributeName="opacity" values="0.8;0.3;0.8" dur="4.5s" begin="0.7s" repeatCount="indefinite" />
    </circle>
    <circle cx="200" cy="60" r="0.7" fill="white" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.2;0.7" dur="3.5s" begin="1s" repeatCount="indefinite" />
    </circle>
    <circle cx="250" cy="25" r="1.1" fill="white" opacity="0.9">
      <animate attributeName="opacity" values="0.9;0.4;0.9" dur="4s" begin="0.3s" repeatCount="indefinite" />
    </circle>
    <circle cx="280" cy="70" r="0.9" fill="white" opacity="0.8">
      <animate attributeName="opacity" values="0.8;0.3;0.8" dur="3s" begin="0.9s" repeatCount="indefinite" />
    </circle>
    <circle cx="175" cy="15" r="1.3" fill="white" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.2;0.7" dur="5s" begin="0.6s" repeatCount="indefinite" />
    </circle>
    <circle cx="220" cy="45" r="0.8" fill="white" opacity="0.9">
      <animate attributeName="opacity" values="0.9;0.4;0.9" dur="4.5s" begin="0.4s" repeatCount="indefinite" />
    </circle>
    <circle cx="120" cy="25" r="1" fill="white" opacity="0.8">
      <animate attributeName="opacity" values="0.8;0.3;0.8" dur="3.5s" begin="0.8s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- Moon -->
  <g id="moon">
    <circle cx="250" cy="50" r="15" fill="#ffffee" opacity="0.9" filter="url(#moonGlow)" />
    <circle cx="242" cy="45" r="5" fill="#3a1a5a" opacity="0.3" />
    <circle cx="255" cy="55" r="3" fill="#3a1a5a" opacity="0.3" />
    <circle cx="248" cy="58" r="2" fill="#3a1a5a" opacity="0.3" />
  </g>
  
  <!-- Clouds or mist in the background -->
  <g id="clouds" opacity="0.3">
    <ellipse cx="50" cy="150" rx="40" ry="15" fill="#aaaaff" />
    <ellipse cx="150" cy="180" rx="60" ry="20" fill="#aaaaff" />
    <ellipse cx="250" cy="160" rx="50" ry="15" fill="#aaaaff" />
  </g>
  
  <!-- City skyline -->
  <g id="city" transform="translate(0, 200)">
    <!-- Buildings with different heights and widths -->
    <rect x="10" y="40" width="15" height="60" fill="#222233" />
    <rect x="25" y="60" width="20" height="40" fill="#222244" />
    <rect x="45" y="30" width="25" height="70" fill="#111133" />
    <rect x="52" y="5" width="10" height="25" fill="#111133" />
    
    <rect x="70" y="50" width="18" height="50" fill="#222255" />
    <rect x="88" y="20" width="12" height="80" fill="#111144" />
    <polygon points="94,20 100,5 106,20" fill="#111144" />
    
    <rect x="100" y="55" width="30" height="45" fill="#222244" />
    <rect x="130" y="35" width="10" height="65" fill="#111122" />
    <rect x="140" y="45" width="15" height="55" fill="#222233" />
    
    <!-- Central skyscraper with antenna -->
    <rect x="155" y="10" width="20" height="90" fill="#111133" />
    <rect x="162" y="0" width="6" height="10" fill="#111133" />
    <line x1="165" y1="0" x2="165" y2="-20" stroke="#444455" stroke-width="1.5" />
    <circle cx="165" cy="-20" r="1" fill="#ff3333">
      <animate attributeName="opacity" values="1;0.3;1" dur="2s" repeatCount="indefinite" />
    </circle>
    
    <rect x="175" y="50" width="25" height="50" fill="#222255" />
    <rect x="200" y="30" width="15" height="70" fill="#111144" />
    <rect x="215" y="60" width="20" height="40" fill="#222233" />
    
    <rect x="235" y="15" width="18" height="85" fill="#111133" />
    <rect x="253" y="45" width="22" height="55" fill="#222244" />
    <rect x="275" y="30" width="15" height="70" fill="#111122" />
    
    <!-- Windows -->
    <g id="windows">
      <!-- Building 1 -->
      <rect x="13" y="45" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="13" y="52" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="13" y="59" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="13" y="66" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="13" y="73" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="19" y="45" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="19" y="52" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="19" y="59" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="19" y="66" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="19" y="73" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      
      <!-- Central skyscraper -->
      <rect x="158" y="15" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="22" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="29" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="36" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="43" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="50" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="57" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="64" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="71" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="78" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="158" y="85" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      
      <rect x="169" y="15" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="22" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="29" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="36" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="43" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="50" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="57" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="64" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="71" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="78" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="169" y="85" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      
      <!-- Other buildings -->
      <rect x="93" y="25" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="93" y="32" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="93" y="39" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="93" y="46" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="93" y="53" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="93" y="60" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      
      <rect x="238" y="20" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="27" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="34" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="41" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="48" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="55" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="62" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="69" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="238" y="76" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      
      <rect x="247" y="20" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="27" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="34" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="41" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="48" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="55" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="62" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="69" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="247" y="76" width="3" height="3" fill="#ffdd44" opacity="0.8" />
      
      <!-- More windows -->
      <rect x="30" y="65" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="30" y="72" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="30" y="79" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="38" y="65" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="38" y="72" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="38" y="79" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      
      <rect x="205" y="35" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="205" y="42" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="205" y="49" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="205" y="56" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="205" y="63" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="205" y="70" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="205" y="77" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="205" y="84" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      
      <rect x="280" y="35" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="280" y="42" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="280" y="49" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="280" y="56" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="280" y="63" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="280" y="70" width="2" height="3" fill="#ffdd44" opacity="0.8" />
      <rect x="280" y="77" width="2" height="3" fill="#ffdd44" opacity="0.8" />
    </g>
  </g>
  
  <!-- Fog layer over city -->
  <rect x="0" y="220" width="300" height="80" fill="url(#skyGradient)" opacity="0.3" />
  
  <!-- Jellyfish -->
  <g id="jellyfish" transform="translate(150, 120)">
    <!-- Jellyfish bell/body -->
    <ellipse cx="0" cy="0" rx="40" ry="35" fill="url(#jellyfishGradient)" filter="url(#jellyfishGlow)" />
    
    <!-- Jellyfish inner pattern -->
    <path d="M-30,0 C-20,10 -10,-10 0,0 C10,-10 20,10 30,0" stroke="#ffaaff" fill="none" stroke-width="2" opacity="0.7" />
    <path d="M-20,-15 C-10,-5 10,-5 20,-15" stroke="#ffaaff" fill="none" stroke-width="1.5" opacity="0.7" />
    <path d="M-25,-5 C-15,5 15,5 25,-5" stroke="#ffaaff" fill="none" stroke-width="1.5" opacity="0.7" />
    
    <!-- Jellyfish spots and details -->
    <circle cx="-15" cy="-10" r="5" fill="#dd99ee" opacity="0.6" />
    <circle cx="15" cy="-10" r="5" fill="#dd99ee" opacity="0.6" />
    <circle cx="0" cy="10" r="8" fill="#dd99ee" opacity="0.4" />
    <circle cx="-20" cy="5" r="4" fill="#dd99ee" opacity="0.5" />
    <circle cx="20" cy="5" r="4" fill="#dd99ee" opacity="0.5" />
    
    <!-- Animated pulsing effect -->
    <ellipse cx="0" cy="0" rx="38" ry="33" fill="none" stroke="#ffccff" stroke-width="0.5" opacity="0.5">
      <animate attributeName="rx" values="38;42;38" dur="3s" repeatCount="indefinite" />
      <animate attributeName="ry" values="33;37;33" dur="3s" repeatCount="indefinite" />
    </ellipse>
    
    <!-- Jellyfish tentacles -->
    <g id="tentacles">
      <!-- Long flowing tentacles with wavy pattern -->
      <path d="M-35,10 C-38,30 -25,50 -30,70 C-35,90 -25,110 -30,130" stroke="#cc88dd" stroke-width="3" fill="none" opacity="0.8">
        <animate attributeName="d" values="M-35,10 C-38,30 -25,50 -30,70 C-35,90 -25,110 -30,130;M-35,10 C-33,30 -30,50 -25,70 C-30,90 -20,110 -25,130;M-35,10 C-38,30 -25,50 -30,70 C-35,90 -25,110 -30,130" dur="8s" repeatCount="indefinite" />
      </path>
      
      <path d="M-25,15 C-28,35 -15,55 -20,75 C-25,95 -15,115 -20,135" stroke="#cc88dd" stroke-width="2" fill="none" opacity="0.7">
        <animate attributeName="d" values="M-25,15 C-28,35 -15,55 -20,75 C-25,95 -15,115 -20,135;M-25,15 C-23,35 -20,55 -15,75 C-20,95 -10,115 -15,135;M-25,15 C-28,35 -15,55 -20,75 C-25,95 -15,115 -20,135" dur="7s" repeatCount="indefinite" />
      </path>
      
      <path d="M-15,18 C-18,38 -5,58 -10,78 C-15,98 -5,118 -10,138" stroke="#cc88dd" stroke-width="3" fill="none" opacity="0.8">
        <animate attributeName="d" values="M-15,18 C-18,38 -5,58 -10,78 C-15,98 -5,118 -10,138;M-15,18 C-13,38 -10,58 -5,78 C-10,98 0,118 -5,138;M-15,18 C-18,38 -5,58 -10,78 C-15,98 -5,118 -10,138" dur="9s" repeatCount="indefinite" />
      </path>
      
      <path d="M-5,20 C-8,40 5,60 0,80 C-5,100 5,120 0,140" stroke="#dd99ee" stroke-width="2" fill="none" opacity="0.7">
        <animate attributeName="d" values="M-5,20 C-8,40 5,60 0,80 C-5,100 5,120 0,140;M-5,20 C-3,40 0,60 5,80 C0,100 10,120 5,140;M-5,20 C-8,40 5,60 0,80 C-5,100 5,120 0,140" dur="10s" repeatCount="indefinite" />
      </path>
      
      <path d="M5,20 C2,40 15,60 10,80 C5,100 15,120 10,140" stroke="#dd99ee" stroke-width="3" fill="none" opacity="0.8">
        <animate attributeName="d" values="M5,20 C2,40 15,60 10,80 C5,100 15,120 10,140;M5,20 C7,40 10,60 15,80 C10,100 20,120 15,140;M5,20 C2,40 15,60 10,80 C5,100 15,120 10,140" dur="7.5s" repeatCount="indefinite" />
      </path>
      
      <path d="M15,18 C12,38 25,58 20,78 C15,98 25,118 20,138" stroke="#cc88dd" stroke-width="2" fill="none" opacity="0.7">
        <animate attributeName="d" values="M15,18 C12,38 25,58 20,78 C15,98 25,118 20,138;M15,18 C17,38 20,58 25,78 C20,98 30,118 25,138;M15,18 C12,38 25,58 20,78 C15,98 25,118 20,138" dur="8.5s" repeatCount="indefinite" />
      </path>
      
      <path d="M25,15 C22,35 35,55 30,75 C25,95 35,115 30,135" stroke="#cc88dd" stroke-width="3" fill="none" opacity="0.8">
        <animate attributeName="d" values="M25,15 C22,35 35,55 30,75 C25,95 35,115 30,135;M25,15 C27,35 30,55 35,75 C30,95 40,115 35,135;M25,15 C22,35 35,55 30,75 C25,95 35,115 30,135" dur="9.5s" repeatCount="indefinite" />
      </path>
      
      <path d="M35,10 C32,30 45,50 40,70 C35,90 45,110 40,130" stroke="#cc88dd" stroke-width="2" fill="none" opacity="0.7">
        <animate attributeName="d" values="M35,10 C32,30 45,50 40,70 C35,90 45,110 40,130;M35,10 C37,30 40,50 45,70 C40,90 50,110 45,130;M35,10 C32,30 45,50 40,70 C35,90 45,110 40,130" dur="6.5s" repeatCount="indefinite" />
      </path>
      
      <!-- Smaller decorative tentacles -->
      <path d="M-33,5 C-35,15 -25,25 -30,35" stroke="#dd99ee" stroke-width="1.5" fill="none" opacity="0.6">
        <animate attributeName="d" values="M-33,5 C-35,15 -25,25 -30,35;M-33,5 C-31,15 -28,25 -25,35;M-33,5 C-35,15 -25,25 -30,35" dur="4s" repeatCount="indefinite" />
      </path>
      
      <path d="M-20,8 C-22,18 -12,28 -17,38" stroke="#dd99ee" stroke-width="1.5" fill="none" opacity="0.6">
        <animate attributeName="d" values="M-20,8 C-22,18 -12,28 -17,38;M-20,8 C-18,18 -15,28 -12,38;M-20,8 C-22,18 -12,28 -17,38" dur="3.5s" repeatCount="indefinite" />
      </path>
      
      <path d="M-7,10 C-9,20 1,30 -4,40" stroke="#dd99ee" stroke-width="1.5" fill="none" opacity="0.6">
        <animate attributeName="d" values="M-7,10 C-9,20 1,30 -4,40;M-7,10 C-5,20 -2,30 1,40;M-7,10 C-9,20 1,30 -4,40" dur="5s" repeatCount="indefinite" />
      </path>
      
      <path d="M7,10 C5,20 15,30 10,40" stroke="#dd99ee" stroke-width="1.5" fill="none" opacity="0.6">
        <animate attributeName="d" values="M7,10 C5,20 15,30 10,40;M7,10 C9,20 12,30 15,40;M7,10 C5,20 15,30 10,40" dur="4.5s" repeatCount="indefinite" />
      </path>
      
      <path d="M20,8 C18,18 28,28 23,38" stroke="#dd99ee" stroke-width="1.5" fill="none" opacity="0.6">
        <animate attributeName="d" values="M20,8 C18,18 28,28 23,38;M20,8 C22,18 25,28 28,38;M20,8 C18,18 28,28 23,38" dur="3s" repeatCount="indefinite" />
      </path>
      
      <path d="M33,5 C31,15 41,25 36,35" stroke="#dd99ee" stroke-width="1.5" fill="none" opacity="0.6">
        <animate attributeName="d" values="M33,5 C31,15 41,25 36,35;M33,5 C35,15 38,25 41,35;M33,5 C31,15 41,25 36,35" dur="5.5s" repeatCount="indefinite" />
      </path>
    </g>
    
    <!-- Top hat -->
    <g id="topHat" transform="translate(0, -40)">
      <!-- Hat brim -->
      <ellipse cx="0" cy="0" rx="30" ry="7" fill="url(#hatGradient)" />
      
      <!-- Hat body -->
      <rect x="-20" y="-30" width="40" height="30" fill="url(#hatGradient)" />
      
      <!-- Hat top -->
      <ellipse cx="0" cy="-30" rx="20" ry="5" fill="url(#hatGradient)" />
      
      <!-- Hat band -->
      <rect x="-20" y="-5" width="40" height="5" fill="url(#hatBandGradient)" />
      
      <!-- Hat decoration -->
      <circle cx="0" cy="-2.5" r="3" fill="#dd88ff" />
      <path d="M0,-2.5 L4,0 L1,4 L-1,4 L-4,0 Z" fill="#8822aa" transform="rotate(45, 0, -2.5) scale(0.7)" />
      
      <!-- Hat shine -->
      <ellipse cx="-10" cy="-15" rx="5" ry="12" fill="white" opacity="0.1" transform="rotate(-30, -10, -15)" />
    </g>
  </g>
  
  <!-- Glowing particles around jellyfish -->
  <g id="particles">
    <circle cx="120" cy="100" r="1.5" fill="#ffaaff" opacity="0.8">
      <animate attributeName="opacity" values="0.8;0.2;0.8" dur="3s" repeatCount="indefinite" />
      <animate attributeName="cy" values="100;95;100" dur="4s" repeatCount="indefinite" />
    </circle>
    <circle cx="180" cy="90" r="1" fill="#ffaaff" opacity="0.6">
      <animate attributeName="opacity" values="0.6;0.1;0.6" dur="2.5s" repeatCount="indefinite" />
      <animate attributeName="cy" values="90;85;90" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="160" cy="150" r="1.2" fill="#ffaaff" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.3;0.7" dur="4s" repeatCount="indefinite" />
      <animate attributeName="cy" values="150;145;150" dur="3.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="130" cy="140" r="1" fill="#ffaaff" opacity="0.6">
      <animate attributeName="opacity" values="0.6;0.2;0.6" dur="3.5s" repeatCount="indefinite" />
      <animate attributeName="cy" values="140;135;140" dur="4.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="170" cy="130" r="1.3" fill="#ffaaff" opacity="0.8">
      <animate attributeName="opacity" values="0.8;0.4;0.8" dur="3s" repeatCount="indefinite" />
      <animate attributeName="cy" values="130;125;130" dur="3.2s" repeatCount="indefinite" />
    </circle>
    <circle cx="140" cy="160" r="1.1" fill="#ffaaff" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.3;0.7" dur="2.5s" repeatCount="indefinite" />
      <animate attributeName="cy" values="160;155;160" dur="2.8s" repeatCount="indefinite" />
    </circle>
    <circle cx="110" cy="120" r="1.4" fill="#ffaaff" opacity="0.6">
      <animate attributeName="opacity" values="0.6;0.2;0.6" dur="3.8s" repeatCount="indefinite" />
      <animate attributeName="cy" values="120;115;120" dur="4.2s" repeatCount="indefinite" />
    </circle>
    <circle cx="190" cy="110" r="1" fill="#ffaaff" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.3;0.7" dur="2.7s" repeatCount="indefinite" />
      <animate attributeName="cy" values="110;105;110" dur="3.3s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission is more visually appealing and creative, with a detailed jellyfish and a well-defined city skyline.

    The use of color and shading enhances the depth and atmosphere, adhering closely to the prompt.

    In contrast, Player 1's image is simpler and less detailed, lacking the same level of technical execution and visual interest.

These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.

Shapes Metrics

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
25
Player 2
157
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
18
Player 2
100
Circles

The number of circle elements (circle) in the SVG.

Player 1
2
Player 2
29
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
2
Player 2
8
Lines

The number of line elements (line) in the SVG.

Player 1
Player 2
1
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
1
Paths

The number of path elements (path) in the SVG.

Player 1
3
Player 2
18
Groups

The number of group elements (g) in the SVG.

Player 1
5
Player 2
9

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
3
Player 2
4
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
1
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
3
Player 2
125
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
19

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
27

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
5
Player 2
43
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
Player 2
5

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
6
Player 2
49
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
4
Player 2
7
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

AI Judging Process

Creativity

Originality, innovative use of shapes and unique approach to the prompt.

Prompt Adherence

How accurately the SVG captures the essence of the prompt.

Visual Appeal

Aesthetic quality including composition, color usage and overall visual impact.

How does judging work?

SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.

Similar Challenges