AndroidCode / code /10007 /10007_1.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>Mobile UI Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #243E4A; /* deep slate blue/teal */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 110px;
display: flex;
align-items: center;
padding: 24px 40px 0 40px;
box-sizing: border-box;
}
.sb-left, .sb-right {
display: flex;
align-items: center;
gap: 24px;
}
.sb-left {
flex: 1;
}
.time {
font-size: 42px;
font-weight: 600;
letter-spacing: 0.5px;
}
.dot {
width: 12px;
height: 12px;
background: #FFFFFF;
border-radius: 50%;
opacity: 0.95;
margin-left: 6px;
margin-right: 6px;
}
.icon {
width: 34px;
height: 34px;
display: inline-block;
}
.icon svg {
width: 100%;
height: 100%;
}
/* Bottom navigation pill */
.nav-pill {
position: absolute;
bottom: 72px;
left: 50%;
transform: translateX(-50%);
width: 420px;
height: 16px;
background: #FFFFFF;
border-radius: 16px;
opacity: 0.95;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="sb-left">
<div class="time">10:05</div>
<!-- Small status icons near time -->
<div class="icon">
<!-- Zigzag/Activity -->
<svg viewBox="0 0 24 24">
<path d="M3 14 L9 6 L12 11 L16 8 L21 16" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="icon">
<!-- Dots grid -->
<svg viewBox="0 0 24 24">
<g fill="#FFFFFF">
<circle cx="6" cy="6" r="2"/>
<circle cx="12" cy="6" r="2"/>
<circle cx="18" cy="6" r="2"/>
<circle cx="6" cy="12" r="2"/>
<circle cx="12" cy="12" r="2"/>
<circle cx="18" cy="12" r="2"/>
<circle cx="6" cy="18" r="2"/>
<circle cx="12" cy="18" r="2"/>
<circle cx="18" cy="18" r="2"/>
</g>
</svg>
</div>
<div class="icon">
<!-- Upload arrow -->
<svg viewBox="0 0 24 24">
<path d="M12 17 V7" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M7 11 L12 6 L17 11" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 19 H19" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div class="icon">
<!-- Stylized A -->
<svg viewBox="0 0 24 24">
<path d="M4 19 L12 5 L20 19" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 15 H16" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div class="dot"></div>
</div>
<div class="sb-right">
<div class="icon">
<!-- Wi-Fi -->
<svg viewBox="0 0 24 24">
<path d="M3 8 Q12 2 21 8" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M6 12 Q12 7 18 12" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M9 16 Q12 14 15 16" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="18.5" r="1.7" fill="#FFFFFF"/>
</svg>
</div>
<div class="icon">
<!-- Battery -->
<svg viewBox="0 0 24 24">
<rect x="3" y="6" width="16" height="12" rx="2" ry="2" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<rect x="5" y="8" width="12" height="8" fill="#FFFFFF"/>
<rect x="19" y="9" width="2.5" height="6" rx="1" ry="1" fill="#FFFFFF"/>
</svg>
</div>
</div>
</div>
<!-- Bottom Navigation Pill -->
<div class="nav-pill"></div>
</div>
</body>
</html>