AndroidCode / code /1001 /1001_3.html
yhzheng1031's picture
Add files using upload-large-folder tool
98687c3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>Folders - Mock UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #EDEDED; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #1f1f1f;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #EDEDED;
font-size: 36px;
opacity: 0.95;
}
.status-icons { display: flex; gap: 24px; align-items: center; }
/* App bar */
.app-bar {
height: 120px;
display: flex;
align-items: center;
padding: 0 36px;
}
.app-title {
display: flex;
align-items: center;
gap: 16px;
font-weight: 600;
font-size: 48px;
color: #EDEDED;
opacity: 0.95;
}
.app-title .logo {
width: 56px; height: 56px; border-radius: 12px;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: inline-flex; align-items: center; justify-content: center;
color: #757575; font-size: 20px;
}
/* Favourites pill */
.fav-pill {
margin: 24px 36px 12px 36px;
display: inline-flex;
align-items: center;
gap: 18px;
padding: 26px 34px;
border: 2px solid #5f6368;
color: #EDEDED;
border-radius: 22px;
width: 420px;
box-sizing: border-box;
font-size: 40px;
}
.fav-pill svg { width: 44px; height: 44px; fill: none; stroke: #9aa0a6; stroke-width: 3.5; }
/* Grid of albums */
.grid {
padding: 12px 36px 0 36px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 36px;
}
.album {
width: 100%;
}
.thumb {
width: 100%;
height: 520px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 32px;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 36px;
text-align: center;
box-sizing: border-box;
}
.album-title {
margin-top: 18px;
font-size: 44px;
color: #EDEDED;
}
.album-sub {
margin-top: 6px;
font-size: 30px;
color: #A8A8A8;
}
/* Overflow menu panel */
.menu-panel {
position: absolute;
top: 220px;
right: 36px;
width: 480px;
background: #333436;
border-radius: 22px;
box-shadow: 0 18px 40px rgba(0,0,0,0.5);
overflow: hidden;
z-index: 10;
}
.menu-item {
padding: 34px 36px;
font-size: 40px;
color: #EDEDED;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-item:last-child { border-bottom: none; }
/* Bottom navigation */
.bottom-nav {
position: absolute;
left: 0; right: 0; bottom: 0;
height: 180px;
background: #2a2a2a;
border-top: 1px solid #3b3b3b;
display: flex;
justify-content: space-around;
align-items: center;
}
.nav-item {
display: flex; flex-direction: column; align-items: center; gap: 10px;
color: #BDBDBD; font-size: 30px;
}
.nav-item svg { width: 54px; height: 54px; }
.nav-item.active { color: #6ea8ff; }
.nav-item.active svg path, .nav-item.active svg rect { stroke: #6ea8ff; fill: none; }
/* Gesture handle */
.handle {
position: absolute;
left: 50%; transform: translateX(-50%);
bottom: 28px;
width: 300px; height: 8px; border-radius: 6px;
background: #e6e6e6; opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Simulated status bar -->
<div class="status-bar">
<div>6:11</div>
<div class="status-icons">
<span></span>
<span>🔔</span>
<span>🔍</span>
<span>📶</span>
<span>🔋 100%</span>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="app-title">
<div class="logo">Logo</div>
Gallery
</div>
</div>
<!-- Favourites quick filter pill -->
<div class="fav-pill">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 3l3 6 6 .9-4.5 4.4 1.1 6.2L12 17l-5.6 3.5 1.1-6.2L3 9.9 9 9l3-6z"></path>
</svg>
Favourites
</div>
<!-- Albums grid -->
<div class="grid">
<div class="album">
<div class="thumb">[IMG: Yellow Bottle on Desk]</div>
<div class="album-title">Camera</div>
<div class="album-sub">5 items · 84 MB</div>
</div>
<div class="album">
<div class="thumb">[IMG: Screenshots Placeholder]</div>
<div class="album-title">Screenshots</div>
<div class="album-sub">1 item · 86 kB</div>
</div>
<div class="album">
<div class="thumb">[IMG: Triangle Sketch]</div>
<div class="album-title">Infinite Painter</div>
<div class="album-sub">2 items · 135 kB</div>
</div>
</div>
<!-- Overflow menu -->
<div class="menu-panel">
<div class="menu-item">New Folder</div>
<div class="menu-item">Settings</div>
<div class="menu-item">Trash</div>
<div class="menu-item">Favourites</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item">
<!-- Photos icon -->
<svg viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="14" rx="2" ry="2" fill="none" stroke="#BDBDBD" stroke-width="2"></rect>
<path d="M7 13l3-3 4 5 3-4 3 5" fill="none" stroke="#BDBDBD" stroke-width="2" />
</svg>
<div>Photos</div>
</div>
<div class="nav-item active">
<!-- Folder icon -->
<svg viewBox="0 0 24 24">
<path d="M3 6h6l2 2h10v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6z" fill="none" stroke="#6ea8ff" stroke-width="2" />
</svg>
<div>Folders</div>
</div>
</div>
<!-- Gesture handle -->
<div class="handle"></div>
</div>
</body>
</html>