433 lines
22 KiB
HTML
433 lines
22 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>3D Genre Universe — Interactive Artist Visualization Case Study</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
:root {
|
|
--accent: #ec4899;
|
|
--accent-dark: #be185d;
|
|
--accent-glow: rgba(236,72,153,0.15);
|
|
--bg-primary: #0a0a0a;
|
|
--bg-secondary: #111827;
|
|
--text-primary: #f1f5f9;
|
|
--text-secondary: #94a3b8;
|
|
--border-color: rgba(255,255,255,0.08);
|
|
--glass-bg: rgba(255,255,255,0.03);
|
|
--glass-border: rgba(255,255,255,0.06);
|
|
}
|
|
html { scroll-behavior: smooth; }
|
|
body {
|
|
font-family: 'Inter', -apple-system, sans-serif;
|
|
background: linear-gradient(135deg, var(--bg-primary) 0%, #0d0a14 50%, #0a0d18 100%);
|
|
color: var(--text-primary); min-height: 100vh; line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
body::before {
|
|
content: ''; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
|
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
|
|
pointer-events: none; z-index: 0;
|
|
}
|
|
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
|
|
.back {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
padding: 20px 0; color: var(--text-secondary); text-decoration: none;
|
|
font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
|
|
}
|
|
.back:hover { color: var(--accent); }
|
|
|
|
.hero { text-align: center; padding: 60px 0 80px; animation: fadeInUp 0.8s ease-out; }
|
|
.hero-label {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
padding: 6px 16px; border-radius: 100px;
|
|
background: var(--accent-glow); border: 1px solid rgba(236,72,153,0.2);
|
|
font-size: 12px; font-weight: 600; color: var(--accent);
|
|
text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px;
|
|
}
|
|
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
|
|
.hero h1 span {
|
|
background: linear-gradient(135deg, var(--accent), #f472b6, #a855f7);
|
|
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
|
}
|
|
.hero .hook { font-size: 1.25rem; color: var(--text-secondary); font-style: italic; font-weight: 300; }
|
|
|
|
.section { padding: 60px 0; animation: fadeInUp 0.6s ease-out both; }
|
|
.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 12px; }
|
|
.section h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
|
.section p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; max-width: 700px; }
|
|
|
|
.glass { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 32px; backdrop-filter: blur(10px); }
|
|
|
|
.solution-list { list-style: none; margin-top: 20px; }
|
|
.solution-list li { padding: 12px 0; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); font-size: 1rem; display: flex; align-items: flex-start; gap: 12px; }
|
|
.solution-list li:last-child { border-bottom: none; }
|
|
.solution-list .check { color: var(--accent); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
|
|
|
|
/* Flow */
|
|
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 24px; }
|
|
.flow-step {
|
|
background: var(--glass-bg); border: 1px solid var(--glass-border);
|
|
border-radius: 14px; padding: 20px 14px; text-align: center;
|
|
position: relative; transition: border-color 0.3s, transform 0.3s;
|
|
}
|
|
.flow-step:hover { border-color: rgba(236,72,153,0.3); transform: translateY(-3px); }
|
|
.flow-step .num {
|
|
width: 28px; height: 28px; border-radius: 50%;
|
|
background: var(--accent-glow); border: 1px solid rgba(236,72,153,0.3);
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 auto 12px;
|
|
}
|
|
.flow-step .icon { font-size: 24px; margin-bottom: 8px; }
|
|
.flow-step .label { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
|
|
.flow-step .sublabel { font-size: 0.7rem; color: var(--text-secondary); margin-top: 4px; }
|
|
.flow-step:not(:last-child)::after {
|
|
content: '→'; position: absolute; right: -16px; top: 50%;
|
|
transform: translateY(-50%); color: var(--accent); font-size: 14px; opacity: 0.5;
|
|
}
|
|
|
|
.tech-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
|
|
.tech-pill {
|
|
padding: 8px 18px; border-radius: 100px;
|
|
background: var(--glass-bg); border: 1px solid var(--glass-border);
|
|
font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
|
|
transition: border-color 0.2s, color 0.2s;
|
|
}
|
|
.tech-pill:hover { border-color: rgba(236,72,153,0.3); color: var(--accent); }
|
|
|
|
.results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
|
|
.result-card {
|
|
background: var(--glass-bg); border: 1px solid var(--glass-border);
|
|
border-radius: 16px; padding: 28px 16px; text-align: center;
|
|
transition: border-color 0.3s, transform 0.3s;
|
|
}
|
|
.result-card:hover { border-color: rgba(236,72,153,0.3); transform: translateY(-3px); }
|
|
.result-card .number {
|
|
font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em;
|
|
background: linear-gradient(135deg, var(--accent), #f472b6);
|
|
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
|
margin-bottom: 6px;
|
|
}
|
|
.result-card .label { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }
|
|
|
|
/* 3D Space Mockup */
|
|
.mockup-container {
|
|
margin-top: 24px; border-radius: 16px; overflow: hidden;
|
|
background: radial-gradient(ellipse at center, #0d0a18 0%, #050308 70%);
|
|
border: 1px solid var(--glass-border); padding: 24px;
|
|
position: relative; min-height: 500px;
|
|
}
|
|
.mockup-titlebar { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; position: relative; z-index: 5; }
|
|
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
|
|
.mockup-dot.r { background: #ef4444; } .mockup-dot.y { background: #f59e0b; } .mockup-dot.g { background: #10b981; }
|
|
.mockup-url-bar {
|
|
flex: 1; margin-left: 16px; height: 36px; border-radius: 8px;
|
|
background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
|
|
display: flex; align-items: center; padding: 0 14px; font-size: 13px; color: var(--text-secondary);
|
|
}
|
|
|
|
/* Starfield + Nodes */
|
|
.space-scene { position: relative; width: 100%; height: 420px; overflow: hidden; }
|
|
|
|
/* Stars */
|
|
.star {
|
|
position: absolute; border-radius: 50%; background: white;
|
|
animation: twinkle 3s ease-in-out infinite alternate;
|
|
}
|
|
|
|
/* Artist nodes */
|
|
.artist-node {
|
|
position: absolute; border-radius: 50%;
|
|
display: flex; align-items: center; justify-content: center;
|
|
transition: transform 0.3s;
|
|
z-index: 3;
|
|
}
|
|
.artist-node:hover { transform: scale(1.3); z-index: 10; }
|
|
.artist-node .glow {
|
|
position: absolute; width: 200%; height: 200%; border-radius: 50%;
|
|
opacity: 0.3; filter: blur(10px);
|
|
}
|
|
.artist-label {
|
|
position: absolute; white-space: nowrap;
|
|
font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.7);
|
|
pointer-events: none; letter-spacing: 0.02em;
|
|
}
|
|
|
|
/* Connection lines */
|
|
.conn-line {
|
|
position: absolute; height: 1px; transform-origin: left center;
|
|
background: linear-gradient(90deg, rgba(236,72,153,0.2), rgba(168,85,247,0.1));
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Axis labels */
|
|
.axis-label {
|
|
position: absolute; font-size: 10px; font-weight: 600;
|
|
color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.1em;
|
|
z-index: 4;
|
|
}
|
|
|
|
/* Legend */
|
|
.legend {
|
|
position: absolute; bottom: 12px; right: 12px; z-index: 5;
|
|
display: flex; gap: 14px;
|
|
}
|
|
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--text-secondary); }
|
|
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
|
|
|
|
.cta { text-align: center; padding: 80px 0; animation: fadeInUp 0.6s ease-out both; animation-delay: 0.3s; }
|
|
.cta h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
|
|
.cta p { color: var(--text-secondary); margin-bottom: 28px; font-size: 1.05rem; }
|
|
.cta-btn {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
padding: 14px 32px; border-radius: 12px;
|
|
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
|
|
color: white; font-weight: 700; font-size: 1rem;
|
|
text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(236,72,153,0.3); }
|
|
|
|
.footer { text-align: center; padding: 40px 0; border-top: 1px solid var(--border-color); }
|
|
.footer .badge {
|
|
display: inline-flex; align-items: center; gap: 6px;
|
|
padding: 6px 14px; border-radius: 8px;
|
|
background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
|
|
font-size: 12px; color: var(--text-secondary);
|
|
}
|
|
|
|
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
|
|
@keyframes twinkle { from { opacity: 0.3; } to { opacity: 1; } }
|
|
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
|
|
|
|
@media (max-width: 768px) {
|
|
.hero { padding: 40px 0 50px; }
|
|
.flow { grid-template-columns: 1fr; gap: 8px; }
|
|
.flow-step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -14px; transform: translateX(-50%); }
|
|
.results-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.space-scene { height: 300px; }
|
|
.section h2 { font-size: 1.4rem; }
|
|
}
|
|
@media (max-width: 480px) { .results-grid { grid-template-columns: 1fr; } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<a href="index.html" class="back">← Back to Portfolio</a>
|
|
|
|
<section class="hero">
|
|
<div class="hero-label">🌌 Data Visualization + 3D</div>
|
|
<h1>3D Genre <span>Universe</span></h1>
|
|
<p class="hook">"56 artists mapped across 6 audio dimensions in 3D space"</p>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="section-label">The Challenge</div>
|
|
<h2>Where Do You Fit in the Genre Landscape?</h2>
|
|
<div class="glass">
|
|
<p>An electronic music artist needed to understand where they fit in the genre landscape relative to peers — for <strong style="color:var(--text-primary)">playlist pitching, branding, and identifying collaboration opportunities</strong>. Traditional genre categorization is flat and subjective. Music lives in a multi-dimensional space that's impossible to see without the right tools.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="section-label">The Solution</div>
|
|
<h2>An Interactive 3D Galaxy of Sound</h2>
|
|
<p>Built an interactive 3D visualization using Three.js that maps artists across multiple audio dimensions:</p>
|
|
<ul class="solution-list">
|
|
<li><span class="check">✓</span> <strong>3 primary axes:</strong> Valence (happy↔sad), Tempo (slow↔fast), Electronic↔Organic</li>
|
|
<li><span class="check">✓</span> <strong>6 spike extensions</strong> per artist: energy, danceability, emotional depth, lyrical complexity, acousticness, production density</li>
|
|
<li><span class="check">✓</span> All data pulled from <strong>Spotify's audio features API</strong> — real data, not guesswork</li>
|
|
<li><span class="check">✓</span> UnrealBloom post-processing for gorgeous glow effects</li>
|
|
<li><span class="check">✓</span> Full orbit controls — zoom, pan, rotate the entire universe</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="section-label">How It Works</div>
|
|
<h2>Data → 3D Universe</h2>
|
|
<div class="flow">
|
|
<div class="flow-step">
|
|
<div class="num">1</div>
|
|
<div class="icon">🎵</div>
|
|
<div class="label">Spotify API</div>
|
|
<div class="sublabel">Audio features</div>
|
|
</div>
|
|
<div class="flow-step">
|
|
<div class="num">2</div>
|
|
<div class="icon">📊</div>
|
|
<div class="label">Feature Extraction</div>
|
|
<div class="sublabel">6 dimensions</div>
|
|
</div>
|
|
<div class="flow-step">
|
|
<div class="num">3</div>
|
|
<div class="icon">📐</div>
|
|
<div class="label">3D Positioning</div>
|
|
<div class="sublabel">Algorithm</div>
|
|
</div>
|
|
<div class="flow-step">
|
|
<div class="num">4</div>
|
|
<div class="icon">✨</div>
|
|
<div class="label">Three.js Scene</div>
|
|
<div class="sublabel">Interactive</div>
|
|
</div>
|
|
<div class="flow-step">
|
|
<div class="num">5</div>
|
|
<div class="icon">🌟</div>
|
|
<div class="label">Bloom Effects</div>
|
|
<div class="sublabel">Post-processing</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="section-label">Tech Stack</div>
|
|
<h2>Built With</h2>
|
|
<div class="tech-grid">
|
|
<span class="tech-pill">Three.js</span>
|
|
<span class="tech-pill">Spotify API</span>
|
|
<span class="tech-pill">Python</span>
|
|
<span class="tech-pill">OrbitControls</span>
|
|
<span class="tech-pill">UnrealBloomPass</span>
|
|
<span class="tech-pill">CSS2DRenderer</span>
|
|
<span class="tech-pill">WebGL</span>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="section-label">Results</div>
|
|
<h2>Impact at a Glance</h2>
|
|
<div class="results-grid">
|
|
<div class="result-card">
|
|
<div class="number">56</div>
|
|
<div class="label">Artists Mapped</div>
|
|
</div>
|
|
<div class="result-card">
|
|
<div class="number">6</div>
|
|
<div class="label">Audio Dimensions</div>
|
|
</div>
|
|
<div class="result-card">
|
|
<div class="number">3D</div>
|
|
<div class="label">Interactive Exploration</div>
|
|
</div>
|
|
<div class="result-card">
|
|
<div class="number">Real</div>
|
|
<div class="label">Spotify Data</div>
|
|
</div>
|
|
<div class="result-card">
|
|
<div class="number">12</div>
|
|
<div class="label">Collaborators Found</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="section-label">Product Preview</div>
|
|
<h2>The 3D Universe</h2>
|
|
<div class="mockup-container">
|
|
<div class="mockup-titlebar">
|
|
<span class="mockup-dot r"></span>
|
|
<span class="mockup-dot y"></span>
|
|
<span class="mockup-dot g"></span>
|
|
<div class="mockup-url-bar">genre-universe.app — 56 artists loaded</div>
|
|
</div>
|
|
<div class="space-scene">
|
|
<!-- Stars -->
|
|
<div class="star" style="width:1px;height:1px;top:8%;left:12%;animation-delay:0s;"></div>
|
|
<div class="star" style="width:2px;height:2px;top:15%;left:45%;animation-delay:0.5s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:22%;left:78%;animation-delay:1s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:35%;left:23%;animation-delay:1.5s;"></div>
|
|
<div class="star" style="width:2px;height:2px;top:48%;left:67%;animation-delay:0.3s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:55%;left:88%;animation-delay:0.8s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:62%;left:34%;animation-delay:1.2s;"></div>
|
|
<div class="star" style="width:2px;height:2px;top:75%;left:56%;animation-delay:0.6s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:82%;left:15%;animation-delay:1.8s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:88%;left:72%;animation-delay:0.2s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:5%;left:60%;animation-delay:2s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:42%;left:5%;animation-delay:1.1s;"></div>
|
|
<div class="star" style="width:2px;height:2px;top:70%;left:90%;animation-delay:0.4s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:30%;left:50%;animation-delay:1.6s;"></div>
|
|
<div class="star" style="width:1px;height:1px;top:92%;left:40%;animation-delay:0.9s;"></div>
|
|
|
|
<!-- Connection lines -->
|
|
<div class="conn-line" style="top:28%;left:18%;width:180px;transform:rotate(20deg);"></div>
|
|
<div class="conn-line" style="top:45%;left:35%;width:120px;transform:rotate(-15deg);"></div>
|
|
<div class="conn-line" style="top:60%;left:50%;width:160px;transform:rotate(30deg);"></div>
|
|
<div class="conn-line" style="top:35%;left:55%;width:100px;transform:rotate(-35deg);"></div>
|
|
<div class="conn-line" style="top:50%;left:20%;width:140px;transform:rotate(10deg);"></div>
|
|
<div class="conn-line" style="top:70%;left:40%;width:110px;transform:rotate(-20deg);"></div>
|
|
<div class="conn-line" style="top:25%;left:65%;width:90px;transform:rotate(45deg);"></div>
|
|
|
|
<!-- Artist nodes — varied sizes/colors -->
|
|
<div class="artist-node" style="width:36px;height:36px;top:20%;left:15%;background:radial-gradient(circle,#ec4899,#be185d);box-shadow:0 0 20px rgba(236,72,153,0.5);animation:float 4s ease-in-out infinite;">
|
|
<div class="glow" style="background:#ec4899;"></div>
|
|
<span class="artist-label" style="top:-18px;left:50%;transform:translateX(-50%);">Odesza</span>
|
|
</div>
|
|
<div class="artist-node" style="width:28px;height:28px;top:35%;left:30%;background:radial-gradient(circle,#a855f7,#7c3aed);box-shadow:0 0 15px rgba(168,85,247,0.5);animation:float 5s ease-in-out infinite 0.5s;">
|
|
<div class="glow" style="background:#a855f7;"></div>
|
|
<span class="artist-label" style="top:-18px;left:50%;transform:translateX(-50%);">Flume</span>
|
|
</div>
|
|
<div class="artist-node" style="width:44px;height:44px;top:45%;left:50%;background:radial-gradient(circle,#f472b6,#ec4899);box-shadow:0 0 30px rgba(244,114,182,0.6);animation:float 3.5s ease-in-out infinite 1s;">
|
|
<div class="glow" style="background:#f472b6;"></div>
|
|
<span class="artist-label" style="top:-18px;left:50%;transform:translateX(-50%);font-size:12px;color:rgba(255,255,255,0.9);">Your Artist</span>
|
|
</div>
|
|
<div class="artist-node" style="width:22px;height:22px;top:28%;left:65%;background:radial-gradient(circle,#818cf8,#6366f1);box-shadow:0 0 12px rgba(129,140,248,0.4);animation:float 4.5s ease-in-out infinite 0.3s;">
|
|
<div class="glow" style="background:#818cf8;"></div>
|
|
<span class="artist-label" style="top:-16px;left:50%;transform:translateX(-50%);">Bonobo</span>
|
|
</div>
|
|
<div class="artist-node" style="width:30px;height:30px;top:60%;left:25%;background:radial-gradient(circle,#c084fc,#a855f7);box-shadow:0 0 18px rgba(192,132,252,0.5);animation:float 5.5s ease-in-out infinite 0.8s;">
|
|
<div class="glow" style="background:#c084fc;"></div>
|
|
<span class="artist-label" style="top:-18px;left:50%;transform:translateX(-50%);">Tycho</span>
|
|
</div>
|
|
<div class="artist-node" style="width:18px;height:18px;top:70%;left:70%;background:radial-gradient(circle,#fb7185,#e11d48);box-shadow:0 0 10px rgba(251,113,133,0.4);animation:float 6s ease-in-out infinite 1.2s;">
|
|
<div class="glow" style="background:#fb7185;"></div>
|
|
<span class="artist-label" style="top:-16px;left:50%;transform:translateX(-50%);">Rufus</span>
|
|
</div>
|
|
<div class="artist-node" style="width:24px;height:24px;top:15%;left:80%;background:radial-gradient(circle,#34d399,#10b981);box-shadow:0 0 14px rgba(52,211,153,0.4);animation:float 4s ease-in-out infinite 1.5s;">
|
|
<div class="glow" style="background:#34d399;"></div>
|
|
<span class="artist-label" style="top:-16px;left:50%;transform:translateX(-50%);">Caribou</span>
|
|
</div>
|
|
<div class="artist-node" style="width:20px;height:20px;top:80%;left:45%;background:radial-gradient(circle,#fbbf24,#f59e0b);box-shadow:0 0 12px rgba(251,191,36,0.4);animation:float 5s ease-in-out infinite 0.2s;">
|
|
<div class="glow" style="background:#fbbf24;"></div>
|
|
<span class="artist-label" style="top:-16px;left:50%;transform:translateX(-50%);">Four Tet</span>
|
|
</div>
|
|
<div class="artist-node" style="width:16px;height:16px;top:50%;left:85%;background:radial-gradient(circle,#60a5fa,#3b82f6);box-shadow:0 0 8px rgba(96,165,250,0.4);animation:float 4.2s ease-in-out infinite 0.7s;">
|
|
<div class="glow" style="background:#60a5fa;"></div>
|
|
<span class="artist-label" style="top:-16px;left:50%;transform:translateX(-50%);">Jamie xx</span>
|
|
</div>
|
|
<div class="artist-node" style="width:26px;height:26px;top:38%;left:10%;background:radial-gradient(circle,#f9a8d4,#ec4899);box-shadow:0 0 14px rgba(249,168,212,0.4);animation:float 3.8s ease-in-out infinite 1.1s;">
|
|
<div class="glow" style="background:#f9a8d4;"></div>
|
|
<span class="artist-label" style="top:-16px;left:50%;transform:translateX(-50%);">Petit Biscuit</span>
|
|
</div>
|
|
|
|
<!-- Axis labels -->
|
|
<div class="axis-label" style="bottom:4px;left:4px;">← Sad</div>
|
|
<div class="axis-label" style="bottom:4px;right:4px;">Happy →</div>
|
|
<div class="axis-label" style="top:4px;left:4px;">Electronic ↑</div>
|
|
<div class="axis-label" style="top:4px;right:4px;">Organic ↑</div>
|
|
|
|
<!-- Legend -->
|
|
<div class="legend">
|
|
<div class="legend-item"><div class="legend-dot" style="background:#ec4899;"></div>High energy</div>
|
|
<div class="legend-item"><div class="legend-dot" style="background:#a855f7;"></div>Mid energy</div>
|
|
<div class="legend-item"><div class="legend-dot" style="background:#60a5fa;"></div>Low energy</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta">
|
|
<h2>Want something like this?</h2>
|
|
<p>Let's create stunning data visualizations for your project.</p>
|
|
<a href="mailto:hello@example.com" class="cta-btn">Get in Touch →</a>
|
|
</section>
|
|
|
|
<footer class="footer">
|
|
<div class="badge">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" width="14" height="14"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
|
|
Built with Claude Code
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |