Creative Challenge
"Floating jellyfish in a glass teapot, light refractions"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="waterGradient" cx="0.5" cy="0.5" r="0.8" fx="0.5" fy="0.5">
<stop offset="0%" stop-color="#a0dfff" />
<stop offset="100%" stop-color="#0d4d7b" />
</radialGradient>
<radialGradient id="jellyGradient" cx="0.5" cy="0.5" r="0.6" fx="0.5" fy="0.5">
<stop offset="0%" stop-color="#e0c3fc" />
<stop offset="100%" stop-color="#8ec5fc" />
</radialGradient>
<linearGradient id="lightRefract" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="rgba(255,255,255,0.7)" />
<stop offset="100%" stop-color="rgba(255,255,255,0)" />
</linearGradient>
</defs>
<g fill="none" stroke="none">
<ellipse cx="150" cy="160" rx="140" ry="80" fill="url(#waterGradient)" stroke="#79affe" stroke-width="2" />
<path d="M50 140 C70 80, 230 80, 250 140 L250 180 C230 240, 70 240, 50 180 Z" fill="url(#waterGradient)" />
<ellipse cx="150" cy="200" rx="140" ry="60" fill="url(#jellyGradient)" opacity="0.3"/>
<ellipse cx="170" cy="110" rx="15" ry="8" fill="url(#jellyGradient)">
<animate attributeType="XML" attributeName="rx" from="15" to="20" dur="2s" repeatCount="indefinite" />
<animate attributeType="XML" attributeName="ry" from="8" to="12" dur="2s" repeatCount="indefinite" />
</ellipse>
<path d="M160 120 C159 130, 165 140, 170 150 M180 120 C179 130, 185 140, 190 150" stroke="url(#jellyGradient)" stroke-width="3" />
<path d="M167 118 C166 128, 168 145, 172 158" stroke="#c5a3ff" stroke-width="1" stroke-dasharray="2,2" />
<path d="M166 110 Q150 75, 166 50" opacity="0.2" fill="url(#lightRefract)" />
</g>
<path d="M145 55 C142 30, 158 30, 155 55 Q155 70, 145 55 Z" fill="white" opacity="0.5"/>
<ellipse cx="150" cy="60" rx="8" ry="4" fill="white" opacity="0.3" />
<path d="M70 195 Q110 215, 160 205" fill="none" stroke="url(#lightRefract)" stroke-width="4" stroke-linecap="round" opacity="0.7"/>
<ellipse cx="150" cy="156" rx="140" ry="60" fill="none" stroke="#83e0ff" stroke-width="1"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="teapotGlow" cx="50%" cy="50%" r="60%">
<stop offset="0%" stop-color="rgba(255,255,255,0.8)"/>
<stop offset="100%" stop-color="rgba(255,255,255,0)"/>
</radialGradient>
<filter id="blur">
<feGaussianBlur stdDeviation="2"/>
</filter>
<linearGradient id="waterGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#a8e6ff" stop-opacity="0.6"/>
<stop offset="100%" stop-color="#4db8ff" stop-opacity="0.4"/>
</linearGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#1a1a2e"/>
<!-- Teapot -->
<path d="M60,100 Q150,80 240,100 L220,220 Q150,240 80,220 Z" fill="rgba(255,255,255,0.1)" stroke="rgba(255,255,255,0.3)" stroke-width="2"/>
<ellipse cx="150" cy="100" rx="90" ry="20" fill="rgba(255,255,255,0.1)" stroke="rgba(255,255,255,0.3)" stroke-width="2"/>
<!-- Water inside -->
<path d="M70,105 Q150,85 230,105 L210,215 Q150,235 90,215 Z" fill="url(#waterGrad)"/>
<!-- Jellyfish body -->
<g transform="translate(150,160)">
<path d="M0,-30 Q-20,-25 -25,-10 Q-30,5 -20,20 Q-10,30 0,35 Q10,30 20,20 Q30,5 25,-10 Q20,-25 0,-30" fill="#ff69b4" fill-opacity="0.6" stroke="#ff1493" stroke-width="1">
<animate attributeName="d" dur="3s" repeatCount="indefinite"
values="M0,-30 Q-20,-25 -25,-10 Q-30,5 -20,20 Q-10,30 0,35 Q10,30 20,20 Q30,5 25,-10 Q20,-25 0,-30;
M0,-32 Q-22,-27 -27,-12 Q-32,3 -22,18 Q-12,28 0,33 Q12,28 22,18 Q32,3 27,-12 Q22,-27 0,-32;
M0,-30 Q-20,-25 -25,-10 Q-30,5 -20,20 Q-10,30 0,35 Q10,30 20,20 Q30,5 25,-10 Q20,-25 0,-30"/>
</path>
<!-- Tentacles -->
<g fill="none" stroke="#ff69b4" stroke-width="1">
<path d="M-15,20 Q-10,30 -15,40" opacity="0.7">
<animate attributeName="d" dur="2s" repeatCount="indefinite"
values="M-15,20 Q-10,30 -15,40;M-15,20 Q-20,30 -15,40;M-15,20 Q-10,30 -15,40"/>
</path>
<path d="M0,20 Q5,30 0,45" opacity="0.7">
<animate attributeName="d" dur="2.5s" repeatCount="indefinite"
values="M0,20 Q5,30 0,45;M0,20 Q-5,35 0,45;M0,20 Q5,30 0,45"/>
</path>
<path d="M15,20 Q20,30 15,40" opacity="0.7">
<animate attributeName="d" dur="1.8s" repeatCount="indefinite"
values="M15,20 Q20,30 15,40;M15,20 Q10,35 15,40;M15,20 Q20,30 15,40"/>
</path>
</g>
</g>
<!-- Light refractions -->
<g opacity="0.4">
<ellipse cx="100" cy="140" rx="15" ry="8" fill="white" filter="url(#blur)"/>
<ellipse cx="200" cy="160" rx="12" ry="6" fill="white" filter="url(#blur)"/>
<ellipse cx="150" cy="190" rx="10" ry="5" fill="white" filter="url(#blur)"/>
</g>
<!-- Teapot spout -->
<path d="M240,140 Q260,150 270,170" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/>
<!-- Glow effect -->
<circle cx="150" cy="150" r="100" fill="url(#teapotGlow)" opacity="0.3"/>
</svg>
Judge's Analysis
Player 1's submission demonstrates a more creative approach with a clear representation of a jellyfish floating in a glass teapot.
The light blue tones and translucent effect effectively convey the idea of light refractions.
Player 2's image, while visually appealing, lacks the teapot element and the distinct clarity of a jellyfish, making Player 1's submission more aligned with the prompt.
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
"Stilt-walking robot in a dessert cafe"
"Tree with clockwork gears for foliage against a full moon"
"An umbrella made of clouds, raining colorful candy drops"
"Juggling octopus wearing neon roller skates"
"Whale painting a starry night sky with its tail"
"Floating enchanted cactus with lunar eyes in a starlit desert"