AndroidCode / code /10175 /10175_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
67530d2 verified
raw
history blame
9.78 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1440, initial-scale=1.0">
<title>Audio Recorder List UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width: 1440px;
height: 3120px;
position: relative;
overflow: hidden;
background: #EEF4F4;
color: #111;
}
/* Top status bar */
.status-bar {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 170px;
background: #0E0E0E;
color: #fff;
padding: 0 40px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 600;
}
.status-left { display: flex; align-items: center; gap: 26px; }
.status-time { font-size: 48px; letter-spacing: 1px; }
.status-icons { display: flex; align-items: center; gap: 24px; }
.status-right { display: flex; align-items: center; gap: 28px; }
/* App bar with search + menu */
.app-bar {
position: absolute;
top: 170px; left: 0;
width: 100%;
height: 170px;
background: #0E0E0E;
display: flex;
align-items: center;
justify-content: flex-end;
padding: 0 40px;
box-sizing: border-box;
gap: 40px;
}
/* Title */
.title {
position: absolute;
top: 360px; left: 40px;
font-size: 104px;
font-weight: 700;
}
/* List area */
.list {
position: absolute;
top: 520px; left: 0;
width: 100%;
}
.list-item {
display: flex;
align-items: center;
gap: 36px;
padding: 40px 40px;
border-bottom: 1px solid #D8E4E4;
background: #F7FBFB;
}
.play-box {
width: 160px; height: 160px;
border-radius: 16px;
background: #EBF1F2;
display: flex; align-items: center; justify-content: center;
border: 1px solid #D0D7D8;
flex: 0 0 160px;
}
.item-content { flex: 1; min-width: 0; }
.item-title {
font-size: 60px; font-weight: 800; color: #111;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
margin-bottom: 18px;
}
.item-meta {
display: flex; align-items: center; justify-content: space-between;
font-size: 40px; color: #5F6B6B;
}
.meta-left { display: flex; gap: 24px; }
.checkbox {
width: 86px; height: 86px;
border: 4px solid #1D1D1D; border-radius: 10px;
flex: 0 0 86px;
}
/* Ad banner */
.ad-banner {
position: absolute;
left: 0; bottom: 430px;
width: 100%; height: 210px;
display: flex; align-items: center; justify-content: center;
background: #E0E0E0;
border-top: 1px solid #BDBDBD;
border-bottom: 1px solid #BDBDBD;
color: #757575;
font-size: 46px; font-weight: 600;
}
/* Bottom navigation */
.bottom-nav {
position: absolute;
left: 0; bottom: 0;
width: 100%;
height: 380px;
background: #0E0E0E;
color: #fff;
display: flex;
align-items: center;
justify-content: space-around;
box-sizing: border-box;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.nav-label { font-size: 36px; color: #D7D7D7; }
/* Progress strip above nav */
.progress-strip {
position: absolute; left: 0; bottom: 380px;
height: 12px; width: 420px; background: #E0342D;
}
/* Gesture home pill */
.home-pill {
position: absolute; left: 50%; bottom: 430px;
transform: translateX(-50%);
width: 280px; height: 20px; background: #E5E5E5; border-radius: 30px;
}
/* Simple helper for subtle dots/circles */
.dot {
width: 22px; height: 22px; background: #DADADA; border-radius: 50%;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<div class="status-time">3:49</div>
<div style="width:48px; height:48px; border-radius:50%; border:3px solid #fff; display:flex; align-items:center; justify-content:center; font-size:28px;">ib</div>
<div class="status-icons">
<!-- Small search icon (for status mock) -->
<svg width="44" height="44" viewBox="0 0 24 24" fill="none">
<circle cx="10" cy="10" r="6" stroke="#fff" stroke-width="2"/>
<line x1="14.5" y1="14.5" x2="20" y2="20" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
</svg>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
<div class="status-right">
<!-- Signal -->
<svg width="44" height="44" viewBox="0 0 24 24" fill="none">
<rect x="3" y="14" width="3" height="7" fill="#fff"/>
<rect x="8" y="11" width="3" height="10" fill="#fff"/>
<rect x="13" y="8" width="3" height="13" fill="#fff"/>
<rect x="18" y="5" width="3" height="16" fill="#fff"/>
</svg>
<!-- WiFi -->
<svg width="44" height="44" viewBox="0 0 24 24" fill="none">
<path d="M2 8c5-5 15-5 20 0" stroke="#fff" stroke-width="2" fill="none"/>
<path d="M5 12c3-3 11-3 14 0" stroke="#fff" stroke-width="2" fill="none"/>
<path d="M8 16c2-2 6-2 8 0" stroke="#fff" stroke-width="2" fill="none"/>
<circle cx="12" cy="20" r="2" fill="#fff"/>
</svg>
<!-- Battery -->
<svg width="64" height="44" viewBox="0 0 32 18" fill="none">
<rect x="1" y="3" width="26" height="12" rx="2" stroke="#fff" stroke-width="2"/>
<rect x="28" y="6" width="3" height="6" rx="1" fill="#fff"/>
<rect x="3" y="5" width="20" height="8" fill="#fff"/>
</svg>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<!-- Search icon -->
<svg width="70" height="70" viewBox="0 0 24 24" fill="none">
<circle cx="10" cy="10" r="6.5" stroke="#fff" stroke-width="2.4"/>
<line x1="14.8" y1="14.8" x2="21" y2="21" stroke="#fff" stroke-width="2.4" stroke-linecap="round"/>
</svg>
<!-- Hamburger icon -->
<svg width="80" height="80" viewBox="0 0 24 24" fill="none">
<line x1="3" y1="6" x2="21" y2="6" stroke="#fff" stroke-width="2.8" stroke-linecap="round"/>
<line x1="3" y1="12" x2="21" y2="12" stroke="#fff" stroke-width="2.8" stroke-linecap="round"/>
<line x1="3" y1="18" x2="21" y2="18" stroke="#fff" stroke-width="2.8" stroke-linecap="round"/>
</svg>
</div>
<!-- Title -->
<div class="title">(2)</div>
<!-- List -->
<div class="list">
<!-- Item 1 -->
<div class="list-item">
<div class="play-box">
<svg width="86" height="86" viewBox="0 0 24 24">
<polygon points="6,4 20,12 6,20" fill="#111"/>
</svg>
</div>
<div class="item-content">
<div class="item-title">2023_12_08_12_46_58_1_1....</div>
<div class="item-meta">
<div class="meta-left">
<span>2023-12-08</span>
<span>13:31</span>
<span>234.3 KB</span>
</div>
<div class="meta-right">00:14s</div>
</div>
</div>
<div class="checkbox"></div>
</div>
<!-- Item 2 -->
<div class="list-item">
<div class="play-box">
<svg width="86" height="86" viewBox="0 0 24 24">
<polygon points="6,4 20,12 6,20" fill="#111"/>
</svg>
</div>
<div class="item-content">
<div class="item-title">2023_12_08_12_46_58_1.mp3</div>
<div class="item-meta">
<div class="meta-left">
<span>2023-12-08</span>
<span>12:47</span>
<span>567.8 KB</span>
</div>
<div class="meta-right">00:36s</div>
</div>
</div>
<div class="checkbox"></div>
</div>
</div>
<!-- Large empty scrolling area is represented by background -->
<!-- Ad banner placeholder -->
<div class="ad-banner">[IMG: Booking.com Ad Banner]</div>
<!-- Progress strip above navigation -->
<div class="progress-strip"></div>
<!-- Gesture pill -->
<div class="home-pill"></div>
<!-- Bottom navigation bar -->
<div class="bottom-nav">
<div class="nav-item">
<!-- Headphones icon (red) -->
<svg width="150" height="150" viewBox="0 0 48 48">
<path d="M8 24A16 16 0 0 1 40 24" stroke="#E53935" stroke-width="4" fill="none"/>
<rect x="6" y="24" width="8" height="14" rx="2" fill="#E53935"/>
<rect x="34" y="24" width="8" height="14" rx="2" fill="#E53935"/>
</svg>
<div class="nav-label"></div>
</div>
<div class="nav-item">
<!-- Microphone icon (outlined white) -->
<svg width="150" height="150" viewBox="0 0 48 48">
<rect x="18" y="8" width="12" height="20" rx="6" stroke="#FFFFFF" stroke-width="3" fill="none"/>
<path d="M12 24c0 8 6 12 12 12s12-4 12-12" stroke="#FFFFFF" stroke-width="3" fill="none"/>
<line x1="24" y1="36" x2="24" y2="44" stroke="#FFFFFF" stroke-width="3"/>
<line x1="16" y1="44" x2="32" y2="44" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"/>
</svg>
<div class="nav-label"></div>
</div>
<div class="nav-item">
<!-- Gear icon -->
<svg width="150" height="150" viewBox="0 0 48 48" fill="none">
<circle cx="24" cy="24" r="6" stroke="#FFFFFF" stroke-width="3"/>
<g stroke="#FFFFFF" stroke-width="3" stroke-linecap="round">
<line x1="24" y1="6" x2="24" y2="12"/>
<line x1="24" y1="36" x2="24" y2="42"/>
<line x1="6" y1="24" x2="12" y2="24"/>
<line x1="36" y1="24" x2="42" y2="24"/>
<line x1="10" y1="10" x2="14" y2="14"/>
<line x1="34" y1="34" x2="38" y2="38"/>
<line x1="34" y1="10" x2="38" y2="14"/>
<line x1="10" y1="34" x2="14" y2="38"/>
</g>
</svg>
<div class="nav-label"></div>
</div>
</div>
</div>
</body>
</html>