Creative Challenge
"Bioluminescent jellyfish disco, with pulsing light patterns"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="disco" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff00ff" stop-opacity="0.8">
<animate attributeName="stop-color" values="#ff00ff;#00ffff;#ff00ff" dur="3s" repeatCount="indefinite"/>
</stop>
<stop offset="100%" stop-color="#000033" stop-opacity="0.9"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feComposite in="SourceGraphic" in2="blur" operator="over"/>
</filter>
</defs>
<rect x="0" y="0" width="300" height="300" fill="#000033"/>
<circle cx="150" cy="150" r="120" fill="url(#disco)" opacity="0.3">
<animate attributeName="r" values="120;130;120" dur="2s" repeatCount="indefinite"/>
</circle>
<!-- Jellyfish 1 -->
<g transform="translate(100,140)">
<path d="M0,0 Q30,-40 60,0 Q30,20 0,0" fill="#00ffaa" opacity="0.8" filter="url(#glow)">
<animate attributeName="d" values="M0,0 Q30,-40 60,0 Q30,20 0,0;M0,0 Q30,-30 60,0 Q30,30 0,0;M0,0 Q30,-40 60,0 Q30,20 0,0" dur="1.5s" repeatCount="indefinite"/>
</path>
<g>
<path d="M15,0 Q15,40 10,60" stroke="#00ffaa" fill="none" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M15,0 Q15,40 10,60;M15,0 Q20,40 15,60;M15,0 Q15,40 10,60" dur="2s" repeatCount="indefinite"/>
</path>
<path d="M30,0 Q30,40 25,60" stroke="#00ffaa" fill="none" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M30,0 Q30,40 25,60;M30,0 Q35,40 30,60;M30,0 Q30,40 25,60" dur="2s" repeatCount="indefinite"/>
</path>
<path d="M45,0 Q45,40 40,60" stroke="#00ffaa" fill="none" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M45,0 Q45,40 40,60;M45,0 Q50,40 45,60;M45,0 Q45,40 40,60" dur="2s" repeatCount="indefinite"/>
</path>
</g>
</g>
<!-- Jellyfish 2 -->
<g transform="translate(180,100)">
<path d="M0,0 Q25,-30 50,0 Q25,15 0,0" fill="#ff00ff" opacity="0.8" filter="url(#glow)">
<animate attributeName="d" values="M0,0 Q25,-30 50,0 Q25,15 0,0;M0,0 Q25,-20 50,0 Q25,25 0,0;M0,0 Q25,-30 50,0 Q25,15 0,0" dur="2s" repeatCount="indefinite"/>
</path>
<g>
<path d="M12,0 Q12,30 8,45" stroke="#ff00ff" fill="none" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M12,0 Q12,30 8,45;M12,0 Q15,30 12,45;M12,0 Q12,30 8,45" dur="1.5s" repeatCount="indefinite"/>
</path>
<path d="M25,0 Q25,30 20,45" stroke="#ff00ff" fill="none" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M25,0 Q25,30 20,45;M25,0 Q28,30 23,45;M25,0 Q25,30 20,45" dur="1.5s" repeatCount="indefinite"/>
</path>
<path d="M38,0 Q38,30 33,45" stroke="#ff00ff" fill="none" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M38,0 Q38,30 33,45;M38,0 Q41,30 36,45;M38,0 Q38,30 33,45" dur="1.5s" repeatCount="indefinite"/>
</path>
</g>
</g>
<!-- Disco lights -->
<circle cx="50" cy="50" r="5" fill="#ffff00" opacity="0.8" filter="url(#glow)">
<animate attributeName="opacity" values="0.8;0.2;0.8" dur="1s" repeatCount="indefinite"/>
</circle>
<circle cx="250" cy="50" r="5" fill="#00ffff" opacity="0.8" filter="url(#glow)">
<animate attributeName="opacity" values="0.8;0.2;0.8" dur="1.3s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="250" r="5" fill="#ff00ff" opacity="0.8" filter="url(#glow)">
<animate attributeName="opacity" values="0.8;0.2;0.8" dur="0.7s" repeatCount="indefinite"/>
</circle>
<!-- Bubbles -->
<circle cx="80" cy="200" r="3" fill="white" opacity="0.5">
<animate attributeName="cy" values="200;50;200" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="220" cy="150" r="2" fill="white" opacity="0.5">
<animate attributeName="cy" values="150;50;150" dur="3s" repeatCount="indefinite"/>
</circle>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#6E0DD0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF00FF;stop-opacity:0.5" />
</radialGradient>
<radialGradient id="lightGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#00FFFF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#00FFFF;stop-opacity:0" />
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="5" result="blur" />
<feMerge>
<feMergeNode in="blur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="#000033" />
<g filter="url(#glow)">
<circle cx="150" cy="150" r="80" fill="url(#jellyGradient)" />
<circle cx="150" cy="150" r="50" fill="url(#lightGradient)" />
<circle cx="150" cy="150" r="30" fill="#00FFFF" />
<circle cx="150" cy="150" r="10" fill="#FFFFFF" />
</g>
<g>
<ellipse cx="100" cy="100" rx="20" ry="40" fill="#FF00FF" transform="rotate(45, 100, 100)" />
<ellipse cx="200" cy="100" rx="40" ry="20" fill="#00FFFF" transform="rotate(-45, 200, 100)" />
<ellipse cx="100" cy="200" rx="40" ry="20" fill="#FF00FF" transform="rotate(45, 100, 200)" />
<ellipse cx="200" cy="200" rx="20" ry="40" fill="#00FFFF" transform="rotate(-45, 200, 200)" />
</g>
<g>
<path d="M150,10 C100,10 50,50 50,100 L50,200 C50,250 100,290 150,290 C200,290 250,250 250,200 L250,100 C250,50 200,10 150,10 Z" fill="none" stroke="#6E0DD0" stroke-width="5" stroke-dasharray="10,5" />
<path d="M150,20 C110,20 70,60 70,100 L70,200 C70,240 110,280 150,280 C190,280 230,240 230,200 L230,100 C230,60 190,20 150,20 Z" fill="none" stroke="#FF00FF" stroke-width="5" stroke-dasharray="10,5" />
</g>
<g>
<circle cx="150" cy="50" r="5" fill="#FFFFFF" />
<circle cx="150" cy="250" r="5" fill="#FFFFFF" />
<circle cx="50" cy="150" r="5" fill="#FFFFFF" />
<circle cx="250" cy="150" r="5" fill="#FFFFFF" />
</g>
</svg>
Judge's Analysis
Player 1's submission features jellyfish that effectively convey the bioluminescent aspect through vibrant colors and a soft glow, aligning well with the disco theme by incorporating a dynamic composition with surrounding dots that suggest movement.
In contrast, Player 2's image, while visually striking, seems more abstract and less representative of jellyfish, which detracts from the prompt's requirements.
Overall, Player 1 better captures the essence of a 'Bioluminescent jellyfish disco.'
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
"Melting clock on a floating cloud over a desert. Time drips like raindrops"
"Winged piano on a cloud, playing itself as music notes float away"
"Clock face as a pizza with melting cheese and pepperoni numbers"
"Cosmic octopus juggling planets in a starry sky"
"Surreal cityscape made of floating fruit islands"
"A cactus wearing a tiny sombrero under a starry night sky"