| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Audio Player UI</title> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: Arial, Helvetica, sans-serif; |
| color: #E6EAED; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #0F1316; |
| border-radius: 36px; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 20px; |
| left: 32px; |
| right: 32px; |
| height: 64px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #ECF0F3; |
| } |
| .status-time { |
| font-size: 36px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .status-icons svg { |
| opacity: 0.95; |
| } |
| |
| |
| .top-actions { |
| position: absolute; |
| top: 140px; |
| left: 24px; |
| right: 24px; |
| height: 80px; |
| display: flex; |
| align-items: center; |
| gap: 32px; |
| color: #CFD8DC; |
| } |
| .top-actions .spacer { |
| flex: 1; |
| } |
| .icon-btn svg { |
| width: 44px; |
| height: 44px; |
| } |
| |
| |
| .card { |
| position: absolute; |
| left: 40px; |
| right: 40px; |
| top: 240px; |
| height: 1200px; |
| background: #1E2327; |
| border-radius: 44px; |
| box-shadow: 0 10px 30px rgba(0,0,0,0.35); |
| } |
| .card-header { |
| padding: 48px 48px 0 48px; |
| } |
| .title { |
| font-size: 56px; |
| font-weight: 500; |
| color: #F4F7FA; |
| } |
| .subtitle { |
| margin-top: 16px; |
| font-size: 32px; |
| color: #A8B0B6; |
| } |
| |
| |
| .wave-area { |
| position: absolute; |
| left: 48px; |
| right: 48px; |
| bottom: 140px; |
| height: 660px; |
| border-radius: 24px; |
| } |
| .wave-vline { |
| position: absolute; |
| left: 360px; |
| top: 120px; |
| width: 4px; |
| height: 420px; |
| background: #8D97A0; |
| border-radius: 2px; |
| opacity: 0.9; |
| } |
| .wave-right { |
| position: absolute; |
| left: 400px; |
| right: 40px; |
| bottom: 60px; |
| height: 240px; |
| display: flex; |
| align-items: flex-end; |
| gap: 18px; |
| } |
| .bar { |
| width: 18px; |
| background: #8D97A0; |
| border-radius: 10px; |
| opacity: 0.95; |
| } |
| .dot { |
| width: 10px; |
| height: 10px; |
| background: #8D97A0; |
| border-radius: 50%; |
| opacity: 0.7; |
| margin-bottom: 8px; |
| } |
| |
| |
| .tabs { |
| position: absolute; |
| left: 100px; |
| right: 100px; |
| top: 1476px; |
| display: flex; |
| gap: 24px; |
| } |
| .pill { |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| padding: 26px 42px; |
| border-radius: 36px; |
| background: #2A2F33; |
| color: #DDE4EA; |
| font-size: 34px; |
| } |
| .pill svg { |
| width: 36px; |
| height: 36px; |
| } |
| .pill.active { |
| background: #353A3F; |
| } |
| |
| |
| .progress { |
| position: absolute; |
| left: 80px; |
| right: 80px; |
| top: 1610px; |
| } |
| .track { |
| position: relative; |
| height: 8px; |
| background: #495055; |
| border-radius: 6px; |
| } |
| .thumb { |
| position: absolute; |
| left: -6px; |
| top: -10px; |
| width: 32px; |
| height: 32px; |
| background: #C7D3E5; |
| border-radius: 50%; |
| box-shadow: 0 3px 6px rgba(0,0,0,0.35); |
| } |
| .time-row { |
| margin-top: 18px; |
| display: flex; |
| justify-content: space-between; |
| color: #DCE3E9; |
| font-size: 32px; |
| } |
| |
| |
| .controls { |
| position: absolute; |
| left: 40px; |
| right: 40px; |
| top: 1728px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| .circle { |
| width: 240px; |
| height: 240px; |
| background: #282D31; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .circle.play { |
| width: 280px; |
| height: 280px; |
| background: #C6D3E6; |
| } |
| .circle svg { |
| width: 120px; |
| height: 120px; |
| } |
| .circle .small { |
| width: 96px; |
| height: 96px; |
| } |
| .circle .label { |
| position: absolute; |
| margin-top: 140px; |
| font-size: 34px; |
| color: #C7CFD6; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 44px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 240px; |
| height: 10px; |
| background: #D8DDE3; |
| opacity: 0.85; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-time">8:44</div> |
| <div class="status-icons"> |
| |
| <svg width="36" height="36" viewBox="0 0 36 36"> |
| <rect x="4" y="20" width="4" height="12" fill="#EAEFF3"/> |
| <rect x="10" y="16" width="4" height="16" fill="#EAEFF3" opacity="0.85"/> |
| <rect x="16" y="12" width="4" height="20" fill="#EAEFF3" opacity="0.7"/> |
| <rect x="22" y="8" width="4" height="24" fill="#EAEFF3" opacity="0.55"/> |
| </svg> |
| |
| <svg width="36" height="36" viewBox="0 0 36 36"> |
| <path d="M6 14c5-4 19-4 24 0" stroke="#EAEFF3" stroke-width="2.5" fill="none" stroke-linecap="round"/> |
| <path d="M10 18c3-3 13-3 16 0" stroke="#EAEFF3" stroke-width="2.5" fill="none" stroke-linecap="round" opacity="0.9"/> |
| <path d="M14 22c2-2 8-2 10 0" stroke="#EAEFF3" stroke-width="2.5" fill="none" stroke-linecap="round" opacity="0.8"/> |
| <circle cx="19" cy="26" r="2.4" fill="#EAEFF3"/> |
| </svg> |
| |
| <svg width="46" height="36" viewBox="0 0 46 36"> |
| <rect x="2" y="8" width="36" height="20" rx="4" ry="4" stroke="#EAEFF3" stroke-width="2.5" fill="none"/> |
| <rect x="6" y="12" width="24" height="12" rx="2" fill="#EAEFF3"/> |
| <rect x="40" y="14" width="4" height="12" rx="1" fill="#EAEFF3"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="top-actions"> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 40 40"> |
| <path d="M28 8 L12 20 L28 32" stroke="#DDE3E7" stroke-width="3.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="spacer"></div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 44 44"> |
| <path d="M22 6 L26.5 16.5 L38 17 L29 23.5 L32 35 L22 28.5 L12 35 L15 23.5 L6 17 L17.5 16.5 Z" fill="none" stroke="#DDE3E7" stroke-width="2.8" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 44 44"> |
| <circle cx="11" cy="12" r="4" fill="#DDE3E7"/> |
| <circle cx="33" cy="20" r="4" fill="#DDE3E7"/> |
| <circle cx="13" cy="32" r="4" fill="#DDE3E7"/> |
| <path d="M14.5 14.5 L29.5 18.5" stroke="#DDE3E7" stroke-width="3" stroke-linecap="round"/> |
| <path d="M15 29.5 L29.5 22.5" stroke="#DDE3E7" stroke-width="3" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 44 44"> |
| <circle cx="12" cy="30" r="6" fill="none" stroke="#DDE3E7" stroke-width="2.8"/> |
| <circle cx="12" cy="14" r="6" fill="none" stroke="#DDE3E7" stroke-width="2.8"/> |
| <path d="M18 18 L36 8" stroke="#DDE3E7" stroke-width="3" stroke-linecap="round"/> |
| <path d="M18 26 L36 36" stroke="#DDE3E7" stroke-width="3" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 44 44"> |
| <circle cx="19" cy="19" r="12" fill="none" stroke="#DDE3E7" stroke-width="3"/> |
| <path d="M30 30 L38 38" stroke="#DDE3E7" stroke-width="3" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 44 44"> |
| <circle cx="22" cy="12" r="3" fill="#DDE3E7"/> |
| <circle cx="22" cy="22" r="3" fill="#DDE3E7"/> |
| <circle cx="22" cy="32" r="3" fill="#DDE3E7"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="title">Birthday Song</div> |
| <div class="subtitle">Thu, Dec 14 • 7:56 AM</div> |
| </div> |
|
|
| |
| <div class="wave-area"> |
| <div class="wave-vline"></div> |
| <div class="wave-right"> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="bar" style="height: 54px;"></div> |
| <div class="bar" style="height: 72px;"></div> |
| <div class="bar" style="height: 48px;"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="bar" style="height: 64px;"></div> |
| <div class="bar" style="height: 86px;"></div> |
| <div class="bar" style="height: 64px;"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="bar" style="height: 92px;"></div> |
| <div class="bar" style="height: 110px;"></div> |
| <div class="bar" style="height: 126px;"></div> |
| <div class="bar" style="height: 96px;"></div> |
| <div class="bar" style="height: 132px;"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="tabs"> |
| <div class="pill active"> |
| <svg viewBox="0 0 36 36"> |
| <rect x="4" y="10" width="4" height="16" rx="2" fill="#DDE4EA"/> |
| <rect x="12" y="6" width="4" height="24" rx="2" fill="#DDE4EA" opacity="0.9"/> |
| <rect x="20" y="12" width="4" height="18" rx="2" fill="#DDE4EA" opacity="0.8"/> |
| <rect x="28" y="8" width="4" height="22" rx="2" fill="#DDE4EA" opacity="0.7"/> |
| </svg> |
| <span>Audio</span> |
| </div> |
| <div class="pill"> |
| <svg viewBox="0 0 36 36"> |
| <rect x="6" y="8" width="24" height="3.5" rx="2" fill="#DDE4EA"/> |
| <rect x="6" y="16" width="24" height="3.5" rx="2" fill="#DDE4EA" opacity="0.9"/> |
| <rect x="6" y="24" width="24" height="3.5" rx="2" fill="#DDE4EA" opacity="0.8"/> |
| </svg> |
| <span>Transcript</span> |
| </div> |
| </div> |
|
|
| |
| <div class="progress"> |
| <div class="track"> |
| <div class="thumb"></div> |
| </div> |
| <div class="time-row"> |
| <div>00:00</div> |
| <div>-00:54</div> |
| </div> |
| </div> |
|
|
| |
| <div class="controls"> |
| |
| <div class="circle"> |
| <svg class="small" viewBox="0 0 100 100"> |
| <path d="M50 18 A32 32 0 1 0 68 28" stroke="#E3E9ED" stroke-width="6" fill="none" stroke-linecap="round"/> |
| <path d="M66 16 L70 32 L55 28" fill="#E3E9ED"/> |
| <text x="50" y="84" text-anchor="middle" font-size="30" fill="#C7CFD6" font-family="Arial">5</text> |
| </svg> |
| </div> |
|
|
| |
| <div class="circle play"> |
| <svg viewBox="0 0 140 140"> |
| <polygon points="58,40 106,70 58,100" fill="#1E2327"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="circle"> |
| <svg class="small" viewBox="0 0 100 100"> |
| <path d="M50 18 A32 32 0 1 1 32 28" stroke="#E3E9ED" stroke-width="6" fill="none" stroke-linecap="round"/> |
| <path d="M34 16 L30 32 L45 28" fill="#E3E9ED"/> |
| <text x="50" y="84" text-anchor="middle" font-size="30" fill="#C7CFD6" font-family="Arial">10</text> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |