Creative Challenge
"Surreal clock melting over a crystal mountain"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="crystal" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#a8e6ff;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#2b4662;stop-opacity:0.9"/>
</linearGradient>
<radialGradient id="clock" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffd700"/>
<stop offset="100%" style="stop-color:#ff8c00"/>
</radialGradient>
</defs>
<!-- Crystal Mountain -->
<path d="M0,300 L120,100 L180,220 L240,80 L300,300 Z" fill="url(#crystal)"/>
<path d="M50,300 L140,150 L190,250 L250,120 L280,300" fill="none" stroke="#ffffff" stroke-width="2" opacity="0.5"/>
<!-- Melting Clock -->
<g transform="translate(150,150) rotate(-15)">
<circle cx="0" cy="0" r="60" fill="url(#clock)" style="filter: url(#shadow)"/>
<path d="M0,-60 C30,-50 80,-30 90,40 C95,80 40,100 0,110" fill="url(#clock)"/>
<!-- Clock Numbers -->
<g fill="#000000" font-family="Arial" font-size="12">
<text x="-7" y="-40">12</text>
<text x="35" y="-5">3</text>
<text x="-5" y="45">6</text>
<text x="-40" y="-5">9</text>
</g>
<!-- Clock Hands -->
<path d="M0,0 L30,20" stroke="#000000" stroke-width="4" transform="rotate(120)"/>
<path d="M0,0 L-20,35" stroke="#000000" stroke-width="3" transform="rotate(-45)"/>
</g>
<!-- Drips -->
<path d="M140,190 Q150,220 130,250 Q120,280 140,300" fill="url(#clock)"/>
<path d="M180,200 Q190,240 170,270 Q160,290 180,300" fill="url(#clock)"/>
<!-- Sparkles -->
<g fill="#ffffff">
<circle cx="100" cy="120" r="2"/>
<circle cx="220" cy="100" r="2"/>
<circle cx="180" cy="180" r="2"/>
<circle cx="150" cy="90" r="1.5"/>
<circle cx="260" cy="150" r="1.5"/>
</g>
<!-- Crystal Reflections -->
<path d="M70,250 L90,220 L110,240 Z" fill="#ffffff" opacity="0.2"/>
<path d="M200,180 L220,150 L240,170 Z" fill="#ffffff" opacity="0.2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#87CEFA;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#70B0FF;stop-opacity:1"/>
</linearGradient>
<linearGradient id="mountainGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#A8D9E9;stop-opacity:1"/>
</linearGradient>
<linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1"/>
</linearGradient>
<filter id="distortion" x="-50%" y="-50%" width="200%" height="200%">
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="3" result="turb" />
<feDisplacementMap in="SourceGraphic" in2="turb" scale="15" xChannelSelector="R" yChannelSelector="G" />
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<polygon points="150,150 120,240 180,240" fill="url(#mountainGradient)">
<animateTransform attributeName="transform" type="translate" values="0,0;0,-10;0,0" repeatCount="indefinite" dur="5s"/>
</polygon>
<path d="M130 130 Q150 100 170 130 Q150 120 130 130 Z" fill="url(#clockGradient)" filter="url(#distortion)"/>
<circle cx="150" cy="140" r="5" fill="#4B0082"/>
<line x1="150" y1="140" x2="150" y2="100" stroke="#4B0082" stroke-width="2"/>
<line x1="150" y1="140" x2="175" y2="125" stroke="#4B0082" stroke-width="2"/>
<text x="123" y="115" font-family="Arial" font-size="12" fill="#4B0082" transform="rotate(-15 124,114)">12</text>
<text x="175" y="135" font-family="Arial" font-size="12" fill="#4B0082">3</text>
<text x="134" y="175" font-family="Arial" font-size="12" fill="#4B0082" transform="rotate(-30 134,175)">6</text>
<text x="150" y="115" font-family="Arial" font-size="12" fill="#4B0082">9</text>
<text x="260" y="280" font-family="Arial" font-size="12" fill="#4B0082" opacity="0.5">Time is Fluid</text>
</svg>
Judge's Analysis
Player 1's submission captures the surreal essence of a melting clock more effectively with its dynamic shape and vibrant colors, which stand out against the crystal mountain background.
The technical execution is strong, with clear lines and a visually appealing composition.
In contrast, Player 2's image lacks the same level of visual impact and clarity in depicting the melting clock concept.
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
"A single raccoon juggling ancient, glowing runes in a moonlit forest"
"Polar bear on a tropical beach, sipping coconut drink under a palm tree"
"Flamingo wearing roller skates on a rainbow path"
"Ballerina balancing on a tightrope above a cityscape during a vibrant sunset"
"A disco ball moon over a city of dancing skyscrapers"
"Lemon-shaped hot air balloon over a surreal purple ocean"