| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Audio Files UI Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| position: relative; |
| width: 1440px; |
| height: 3120px; |
| overflow: hidden; |
| background: #EEF4F5; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1440px; |
| height: 120px; |
| background: #101010; |
| color: #fff; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| font-size: 48px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .dot { |
| width: 16px; |
| height: 16px; |
| background: #D9D9D9; |
| border-radius: 50%; |
| opacity: 0.9; |
| } |
| .signal { |
| width: 40px; height: 40px; border: 3px solid #D9D9D9; border-radius: 50%; |
| } |
| .wifi { |
| width: 42px; height: 42px; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid transparent; |
| } |
| .battery { |
| width: 52px; height: 28px; border: 4px solid #D9D9D9; border-radius: 6px; position: relative; |
| } |
| .battery::after { content: ""; position: absolute; right: -10px; top: 6px; width: 8px; height: 14px; background: #D9D9D9; border-radius: 2px; } |
| |
| |
| .toolbar { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 1440px; |
| height: 160px; |
| background: #101010; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| color: #fff; |
| } |
| .toolbar-right { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 36px; |
| } |
| .icon-btn svg { display: block; } |
| |
| |
| .count-title { |
| position: absolute; |
| top: 300px; |
| left: 40px; |
| font-size: 96px; |
| color: #0B0B0B; |
| font-weight: 600; |
| } |
| |
| |
| .list { |
| position: absolute; |
| top: 420px; |
| left: 0; |
| width: 100%; |
| } |
| .item { |
| width: 100%; |
| padding: 40px 40px; |
| box-sizing: border-box; |
| border-top: 1px solid #D8E0E2; |
| background: transparent; |
| display: flex; |
| align-items: center; |
| } |
| .play-tile { |
| width: 140px; |
| height: 140px; |
| border-radius: 22px; |
| background: #F2F6F7; |
| border: 1px solid #E1E6E8; |
| display: flex; align-items: center; justify-content: center; |
| box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03); |
| } |
| .file-info { |
| flex: 1; |
| margin-left: 40px; |
| } |
| .file-name { |
| font-size: 54px; |
| color: #111; |
| line-height: 1.2; |
| } |
| .meta-row { |
| margin-top: 12px; |
| font-size: 36px; |
| color: #6E7C7F; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| padding-right: 20px; |
| } |
| .checkbox { |
| width: 88px; |
| height: 88px; |
| border: 6px solid #1D1D1D; |
| border-radius: 10px; |
| margin-left: 24px; |
| background: transparent; |
| } |
| |
| |
| .spacer { |
| position: absolute; |
| top: 1120px; |
| left: 0; |
| right: 0; |
| bottom: 520px; |
| } |
| |
| |
| .ad-banner { |
| position: absolute; |
| left: 0; |
| bottom: 360px; |
| width: 100%; |
| height: 180px; |
| background: #FFFFFF; |
| border-top: 1px solid #E3E3E3; |
| border-bottom: 1px solid #E3E3E3; |
| display: flex; |
| align-items: center; |
| padding: 0 32px; |
| box-sizing: border-box; |
| gap: 24px; |
| } |
| .ad-logo { |
| width: 130px; height: 130px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 30px; |
| } |
| .ad-text { |
| flex: 1; |
| font-size: 44px; |
| color: #111; |
| } |
| .ad-open { |
| font-size: 44px; |
| color: #111; |
| margin-left: auto; |
| } |
| .ad-badge { |
| display: inline-block; |
| font-size: 32px; |
| color: #555; |
| border: 2px solid #888; |
| border-radius: 8px; |
| padding: 4px 10px; |
| margin-left: 12px; |
| } |
| |
| |
| .bottom-nav { |
| position: absolute; |
| left: 0; |
| bottom: 0; |
| width: 100%; |
| height: 320px; |
| background: #101010; |
| color: #fff; |
| display: flex; |
| align-items: center; |
| justify-content: space-around; |
| } |
| .nav-item { |
| display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; |
| color: #fff; |
| } |
| .nav-label { font-size: 34px; opacity: 0.8; } |
| .nav-item.active .nav-icon svg { stroke: #E53935; fill: #E53935; } |
| .nav-item.active .nav-label { color: #E53935; } |
| |
| .progress-line { |
| position: absolute; |
| left: 0; |
| bottom: 320px; |
| width: 420px; |
| height: 12px; |
| background: #E53935; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 28px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 280px; |
| height: 16px; |
| background: #E0E0E0; |
| border-radius: 12px; |
| opacity: 0.95; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>3:52</div> |
| <div class="status-icons"> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="signal"></div> |
| <div class="dot"></div> |
| <div class="wifi"></div> |
| <div class="battery"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="toolbar"> |
| <div class="toolbar-right"> |
| <div class="icon-btn"> |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7" fill="none" stroke="#FFFFFF" stroke-width="2"/> |
| <line x1="15" y1="15" x2="22" y2="22" stroke="#FFFFFF" stroke-width="2"/> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <line x1="3" y1="6" x2="21" y2="6" stroke="#FFFFFF" stroke-width="2"/> |
| <line x1="3" y1="12" x2="21" y2="12" stroke="#FFFFFF" stroke-width="2"/> |
| <line x1="3" y1="18" x2="21" y2="18" stroke="#FFFFFF" stroke-width="2"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="count-title">(2)</div> |
|
|
| |
| <div class="list"> |
| |
| <div class="item"> |
| <div class="play-tile"> |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <polygon points="6,4 20,12 6,20" fill="#111"/> |
| </svg> |
| </div> |
| <div class="file-info"> |
| <div class="file-name">Quentin Clark.mp3</div> |
| <div class="meta-row"> |
| <div>2023-12-08 13:31, 234.3 KB</div> |
| <div>00:14s</div> |
| </div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="play-tile"> |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <polygon points="6,4 20,12 6,20" fill="#111"/> |
| </svg> |
| </div> |
| <div class="file-info"> |
| <div class="file-name">2023_12_08_12_46_58_1.mp3</div> |
| <div class="meta-row"> |
| <div>2023-12-08 12:47, 567.8 KB</div> |
| <div>00:36s</div> |
| </div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="spacer"></div> |
|
|
| |
| <div class="ad-banner"> |
| <div class="ad-logo">[IMG: Booking Logo]</div> |
| <div class="ad-text">Booking.com: Hotels & Flights <span class="ad-badge">AD</span></div> |
| <div class="ad-open">OPEN</div> |
| </div> |
|
|
| |
| <div class="progress-line"></div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item active"> |
| <div class="nav-icon"> |
| <svg width="120" height="120" viewBox="0 0 48 48"> |
| |
| <path d="M24 10c-8 0-14 6-14 14h4c0-6 4-10 10-10s10 4 10 10h4c0-8-6-14-14-14z" fill="#E53935"/> |
| <rect x="8" y="26" width="8" height="14" rx="3" fill="#E53935"/> |
| <rect x="32" y="26" width="8" height="14" rx="3" fill="#E53935"/> |
| |
| <polygon points="22,30 30,34 22,38" fill="#FFFFFF"/> |
| </svg> |
| </div> |
| <div class="nav-label">Player</div> |
| </div> |
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg width="120" height="120" viewBox="0 0 48 48"> |
| |
| <rect x="18" y="10" width="12" height="20" rx="6" fill="none" stroke="#FFFFFF" stroke-width="2"/> |
| <path d="M12 24c0 7 5 12 12 12s12-5 12-12" fill="none" stroke="#FFFFFF" stroke-width="2"/> |
| <line x1="24" y1="36" x2="24" y2="42" stroke="#FFFFFF" stroke-width="2"/> |
| <line x1="18" y1="42" x2="30" y2="42" stroke="#FFFFFF" stroke-width="2"/> |
| </svg> |
| </div> |
| <div class="nav-label">Record</div> |
| </div> |
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg width="120" height="120" viewBox="0 0 48 48"> |
| |
| <circle cx="24" cy="24" r="8" fill="none" stroke="#FFFFFF" stroke-width="2"/> |
| <path d="M24 8v6M24 34v6M8 24h6M34 24h6M13 13l4 4M31 31l4 4M35 13l-4 4M13 35l4-4" stroke="#FFFFFF" stroke-width="2"/> |
| </svg> |
| </div> |
| <div class="nav-label">Settings</div> |
| </div> |
| <div class="home-indicator"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |