Creative Challenge
"Futuristic jellyfish city floating in the sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="jellyfishGradient">
<stop offset="0%" stop-color="#FFB6C1" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#4169E1" stop-opacity="0.8"/>
</linearGradient>
<linearGradient id="buildingGradient">
<stop offset="0%" stop-color="#00BFFF"/>
<stop offset="100%" stop-color="#00FF00"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="#123456"/>
<g transform="translate(150,150)">
<path d="M0,0 Q50,-50 100,0 Q50,50 0,0" fill="url(#jellyfishGradient)" filter="url(#glow)"/>
<g transform="rotate(45)">
<path d="M0,-50 Q50,-70 100,-50" stroke="#FF69B4" stroke-width="4" fill="none">
<animate attributeName="d" dur="2s" repeatCount="indefinite">
<to>d="M0,-50 Q50,-70 100,-50 Q75,-60 50,-50"</to>
</animate>
</path>
<path d="M0,50 Q50,70 100,50" stroke="#FF69B4" stroke-width="4" fill="none">
<animate attributeName="d" dur="2s" repeatCount="indefinite">
<to>d="M0,50 Q50,70 100,50 Q75,60 50,50"</to>
</animate>
</path>
</g>
<g transform="translate(0,70)">
<rect width="150" height="100" rx="20" fill="url(#buildingGradient)" filter="url(#glow)"/>
<path d="M-75,0 L-25,20 L25,20 L75,0" stroke="#00FF00" stroke-width="3" fill="none"/>
<text x="-30" y="10" font-size="12" fill="#00BFFF">NEO-CITY</text>
</g>
<g transform="translate(-80,-40)">
<rect width="60" height="80" rx="15" fill="#00FF00" opacity="0.8"/>
<rect x="20" y="20" width="20" height="40" rx="10" fill="#FF69B4"/>
</g>
<g transform="translate(80,-40)">
<rect width="60" height="80" rx="15" fill="#00FF00" opacity="0.8"/>
<rect x="20" y="20" width="20" height="40" rx="10" fill="#FF69B4"/>
</g>
<g transform="translate(0,-80)">
<circle cx="0" cy="0" r="40" fill="#00BFFF" opacity="0.7"/>
<circle cx="0" cy="0" r="30" fill="#00FF00" opacity="0.5"/>
<circle cx="0" cy="0" r="20" fill="#FF69B4" opacity="0.4"/>
</g>
</g>
<g>
<circle cx="50" cy="50" r="2" fill="#FFFFFF"/>
<circle cx="250" cy="30" r="3" fill="#FFFFFF"/>
<circle cx="100" cy="280" r="4" fill="#FFFFFF"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(100,149,237);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,191,255);stop-opacity:1" />
</linearGradient>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%">
<stop offset="20%" style="stop-color:rgb(238,130,238);stop-opacity:0.9" />
<stop offset="100%" style="stop-color:rgb(148,0,211);stop-opacity:0.9" />
</radialGradient>
<pattern id="buildingPattern" width="5" height="5" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="5" height="5" fill="rgba(255,255,255,0.2)" />
<circle cx="2.5" cy="2.5" r="1" fill="rgba(255,255,255,0.4)" />
</pattern>
<linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(102,205,170);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(32,178,170);stop-opacity:0.5" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g transform="translate(150,150)">
<ellipse rx="100" ry="40" fill="url(#jellyGradient)" />
<circle cx="0" cy="-10" r="55" fill="url(#buildingPattern)" />
<line x1="0" y1="20" x2="-30" y2="100" stroke="url(#tentacleGradient)" stroke-width="4" />
<line x1="0" y1="20" x2="30" y2="100" stroke="url(#tentacleGradient)" stroke-width="4" />
<line x1="0" y1="20" x2="-60" y2="90" stroke="url(#tentacleGradient)" stroke-width="2" />
<line x1="0" y1="20" x2="60" y2="90" stroke="url(#tentacleGradient)" stroke-width="2" />
<line x1="0" y1="20" x2="0" y2="100" stroke="url(#tentacleGradient)" stroke-width="3" />
</g>
<circle cx="80" cy="200" r="30" fill="url(#jellyGradient)">
<animate attributeName="cy" from="200" to="220" dur="3s" repeatCount="indefinite" values="200;220;200" />
</circle>
<circle cx="220" cy="150" r="25" fill="url(#jellyGradient)">
<animate attributeName="cy" from="150" to="170" dur="2.5s" repeatCount="indefinite" values="150;170;150" />
</circle>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the concept of a 'futuristic jellyfish city floating in the sky' with its use of soft, translucent, and rounded shapes that resemble jellyfish.
The color scheme and composition create a more cohesive and visually appealing representation, adhering closely to the prompt.
Player 1's image, while colorful, lacks the clear thematic elements that connect to the idea of a jellyfish city.
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
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
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
"An octopus wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"