File size: 8,089 Bytes
c32f9a6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Audio Player Screen</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: #0E1316;
color: #E8EAED;
}
/* Status bar */
.status-bar {
height: 88px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 42px;
color: #E8EAED;
opacity: 0.9;
}
.status-icons {
display: flex;
align-items: center;
gap: 26px;
}
.sb-dot {
width: 16px; height: 16px; background: #E8EAED; border-radius: 50%;
opacity: 0.9;
}
.sb-battery {
width: 38px; height: 20px; border: 2px solid #E8EAED; border-radius: 4px; position: relative;
}
.sb-battery::after {
content: "";
position: absolute; right: -8px; top: 6px; width: 6px; height: 8px; background: #E8EAED; border-radius: 2px;
}
.sb-battery .fill {
position: absolute; left: 2px; top: 2px; height: 14px; width: 24px; background: #E8EAED; border-radius: 2px;
}
/* Top app bar */
.app-bar {
height: 120px;
padding: 0 36px;
display: flex;
align-items: center;
gap: 52px;
color: #E8EAED;
}
.icon-btn {
width: 64px; height: 64px;
display: inline-flex; align-items: center; justify-content: center;
color: #E8EAED; opacity: 0.95;
}
.icon-btn svg { width: 42px; height: 42px; stroke: #E8EAED; fill: none; stroke-width: 3.5; }
/* Card */
.card {
margin: 24px 28px 0 28px;
background: #23282C;
border-radius: 44px;
padding: 52px 52px 64px 52px;
min-height: 1060px;
box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.title {
font-size: 58px;
font-weight: 500;
letter-spacing: 0.2px;
color: #F5F7FA;
}
.subtitle {
margin-top: 18px;
font-size: 40px;
color: #B6C0C8;
}
/* Waveform area */
.wave-area {
position: relative;
margin-top: 140px;
height: 680px;
border-radius: 28px;
background: #23282C;
}
.playhead {
position: absolute;
left: 360px;
top: 140px;
width: 4px;
height: 400px;
background: #8D98A3;
border-radius: 3px;
}
.wave-dots {
position: absolute;
right: 60px;
bottom: 150px;
display: flex;
align-items: flex-end;
gap: 18px;
}
.bar {
width: 18px;
background: #8D98A3;
border-radius: 6px;
opacity: 0.9;
}
.dot {
width: 14px; height: 14px; background: #8D98A3; border-radius: 50%; opacity: 0.6;
}
/* Tabs */
.tabs {
margin: 40px 64px 0 64px;
display: flex;
gap: 22px;
}
.tab {
display: inline-flex; align-items: center; gap: 18px;
padding: 22px 34px;
background: #384046;
color: #D9E3EA;
border-radius: 999px;
font-size: 40px;
}
.tab.active { background: #464E54; }
.tab svg { width: 40px; height: 40px; stroke: #D9E3EA; fill: none; stroke-width: 3; }
/* Progress */
.progress {
margin: 46px 48px 0 48px;
}
.track {
position: relative;
height: 8px;
background: #6F7A85;
border-radius: 8px;
}
.thumb {
position: absolute; left: 0; top: -18px;
width: 36px; height: 36px; background: #C9D6E4; border-radius: 50%;
box-shadow: 0 0 0 4px rgba(201,214,228,0.2);
}
.time-row {
margin-top: 20px;
display: flex; justify-content: space-between; align-items: center;
font-size: 38px; color: #D0D6DB;
}
/* Controls */
.controls {
margin-top: 56px;
padding: 0 60px;
display: flex;
justify-content: space-between;
align-items: center;
}
.ctrl {
width: 240px; height: 240px;
background: #2B3136;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
}
.ctrl.center {
background: #BFCDE0;
}
.ctrl svg { width: 96px; height: 96px; stroke: #E8EAED; fill: none; stroke-width: 4; }
.ctrl.center svg { stroke: #2B3136; fill: #2B3136; }
.ctrl-label {
position: absolute; font-size: 34px; color: #E8EAED;
}
.label-left { transform: translate(28px, 80px); }
.label-right { transform: translate(28px, 80px); }
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 44px;
left: 50%;
transform: translateX(-50%);
width: 360px; height: 12px;
background: #E5E5E5;
border-radius: 12px;
opacity: 0.7;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>8:52</div>
<div class="status-icons">
<div class="sb-dot"></div>
<div class="sb-dot" style="width:22px;height:22px;border-radius:4px;"></div>
<div class="sb-battery"><div class="fill"></div></div>
</div>
</div>
<!-- Top app bar -->
<div class="app-bar">
<div class="icon-btn">
<svg viewBox="0 0 48 48"><path d="M30 10 L16 24 L30 38"/></svg>
</div>
<div class="icon-btn">
<svg viewBox="0 0 48 48"><path d="M24 6 L28 18 L42 18 L30 26 L34 40 L24 30 L14 40 L18 26 L6 18 L20 18 Z"/></svg>
</div>
<div class="icon-btn">
<svg viewBox="0 0 48 48">
<circle cx="12" cy="30" r="6" />
<circle cx="36" cy="18" r="6" />
<circle cx="36" cy="36" r="6" />
<path d="M16 28 L30 20" />
<path d="M16 32 L30 34" />
</svg>
</div>
<div class="icon-btn">
<svg viewBox="0 0 48 48"><path d="M14 34 L34 14 M14 14 L34 34"/></svg>
</div>
<div class="icon-btn">
<svg viewBox="0 0 48 48"><circle cx="20" cy="20" r="12"/><path d="M30 30 L42 42"/></svg>
</div>
<div class="icon-btn">
<svg viewBox="0 0 48 48"><circle cx="24" cy="12" r="3"/><circle cx="24" cy="24" r="3"/><circle cx="24" cy="36" r="3"/></svg>
</div>
</div>
<!-- Content card -->
<div class="card">
<div class="title">Birthday Song</div>
<div class="subtitle">Thu, Dec 14 • 7:56 AM</div>
<div class="wave-area">
<div class="playhead"></div>
<div class="wave-dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="bar" style="height:56px;"></div>
<div class="bar" style="height:80px;"></div>
<div class="bar" style="height:120px;"></div>
<div class="bar" style="height:84px;"></div>
<div class="bar" style="height:68px;"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="bar" style="height:68px;"></div>
<div class="bar" style="height:92px;"></div>
<div class="bar" style="height:132px;"></div>
<div class="bar" style="height:156px;"></div>
<div class="bar" style="height:164px;"></div>
</div>
</div>
</div>
<!-- Tabs -->
<div class="tabs">
<div class="tab active">
<svg viewBox="0 0 48 48">
<path d="M12 8 V40 M24 14 V40 M36 20 V40"/>
</svg>
<span>Audio</span>
</div>
<div class="tab">
<svg viewBox="0 0 48 48">
<path d="M10 14 H38 M10 24 H38 M10 34 H28"/>
</svg>
<span>Transcript</span>
</div>
</div>
<!-- Progress bar -->
<div class="progress">
<div class="track"></div>
<div class="thumb"></div>
<div class="time-row">
<div>00:00</div>
<div>-00:54</div>
</div>
</div>
<!-- Controls -->
<div class="controls">
<div class="ctrl">
<svg viewBox="0 0 96 96">
<path d="M42 20 L26 20 A26 26 0 1 0 70 48" />
</svg>
<div class="ctrl-label label-left">5</div>
</div>
<div class="ctrl center">
<svg viewBox="0 0 96 96">
<polygon points="36,28 72,48 36,68" />
</svg>
</div>
<div class="ctrl">
<svg viewBox="0 0 96 96">
<path d="M54 20 L70 20 A26 26 0 1 1 26 48" />
</svg>
<div class="ctrl-label label-right">10</div>
</div>
</div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html> |