AndroidCode / code /1001 /1001_11.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Plants Album - Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #2b2b2b;
color: #eaeaea;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 90px;
padding: 0 32px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #ffffff;
font-size: 32px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 22px;
font-size: 28px;
}
.icon {
display: inline-flex;
width: 44px;
height: 44px;
}
/* App bar */
.app-bar {
position: absolute;
top: 90px;
left: 0;
right: 0;
padding: 28px 28px 22px 28px;
box-sizing: border-box;
display: flex;
align-items: center;
gap: 18px;
}
.app-title-group {
display: flex;
flex-direction: column;
}
.title {
font-size: 52px;
font-weight: 600;
color: #eaeaea;
line-height: 1.2;
}
.subtitle {
margin-top: 8px;
font-size: 28px;
color: #bdbdbd;
}
.app-actions {
margin-left: auto;
display: flex;
align-items: center;
gap: 10px;
}
/* Content */
.content {
position: absolute;
top: 210px;
left: 0;
right: 0;
padding: 20px 28px 120px 28px;
box-sizing: border-box;
}
.section-title {
font-size: 34px;
font-weight: 700;
color: #d5d5d5;
margin: 22px 0 20px 12px;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 24px;
padding-left: 12px;
}
.thumb {
width: 480px;
height: 360px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 6px;
color: #757575;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
text-align: center;
}
/* Bottom gesture bar area */
.gesture-bar {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 110px;
background: #000000;
}
.gesture-pill {
position: absolute;
width: 220px;
height: 12px;
border-radius: 12px;
background: #e6e6e6;
left: 50%;
transform: translateX(-50%);
bottom: 38px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">6:16</div>
<div class="status-right">
<!-- Simple Wi-Fi icon -->
<svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2">
<path d="M2 8c6-5 14-5 20 0"></path>
<path d="M5 12c4-3 10-3 14 0"></path>
<path d="M8 16c3-2 5-2 8 0"></path>
<circle cx="12" cy="19" r="1.6" fill="#ffffff" stroke="none"></circle>
</svg>
<!-- Battery icon with percent text -->
<svg class="icon" viewBox="0 0 28 18">
<rect x="1" y="3" width="22" height="12" rx="2" fill="none" stroke="#ffffff" stroke-width="2"></rect>
<rect x="3" y="5" width="16" height="8" rx="1.5" fill="#ffffff"></rect>
<rect x="24" y="7" width="3" height="6" rx="1" fill="#ffffff"></rect>
</svg>
<span>100%</span>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<!-- Back arrow -->
<svg class="icon" viewBox="0 0 48 48" fill="none" stroke="#eaeaea" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
<path d="M28 10 L14 24 L28 38"></path>
</svg>
<div class="app-title-group">
<div class="title">Plants</div>
<div class="subtitle">2 items · 8.3 MB</div>
</div>
<div class="app-actions">
<!-- More vertical -->
<svg class="icon" viewBox="0 0 24 24" fill="#eaeaea">
<circle cx="12" cy="5" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="19" r="2"></circle>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="section-title">September</div>
<div class="grid">
<div class="thumb">[IMG: Tall indoor plant by window]</div>
<div class="thumb">[IMG: Planter with green plants]</div>
</div>
</div>
<!-- Bottom gesture bar -->
<div class="gesture-bar">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html>