AndroidCode / code /10195 /10195_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
5501681 verified
raw
history blame
7.13 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>UI Render</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #000000;
font-family: Arial, Helvetica, sans-serif;
color: #ffffff;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 90px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 32px;
color: #ffffff;
font-size: 32px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 22px;
}
.sb-icon {
width: 34px; height: 34px;
}
/* Header */
.header {
position: absolute;
top: 100px;
left: 0;
width: 100%;
padding: 24px 32px;
display: flex;
align-items: center;
gap: 24px;
}
.header-title {
font-size: 56px;
font-weight: 700;
line-height: 1.2;
flex: 1;
}
.icon-btn {
width: 72px; height: 72px;
display: flex; align-items: center; justify-content: center;
border-radius: 12px;
color: #ffffff;
}
.kebab {
width: 48px; height: 48px;
}
/* Task card */
.task-card {
position: absolute;
top: 260px;
left: 32px;
width: 1016px;
height: 156px;
background: #1E1E1E;
border-radius: 28px;
box-shadow: 0 6px 12px rgba(0,0,0,0.35);
display: flex;
align-items: center;
padding: 0 28px;
}
.checkbox {
width: 56px; height: 56px;
border: 3px solid #717171;
border-radius: 8px;
margin-right: 24px;
box-sizing: border-box;
}
.task-text {
font-size: 40px;
color: #EDEDED;
flex: 1;
}
.task-right {
display: flex;
align-items: center;
gap: 16px;
}
.label-blue {
color: #5D86FF;
font-size: 34px;
font-weight: 600;
}
.clock {
width: 40px; height: 40px;
}
/* Floating Action Button */
.fab {
position: absolute;
right: 48px;
bottom: 360px;
width: 160px;
height: 160px;
background: #3D6DFF;
border-radius: 80px;
box-shadow: 0 10px 24px rgba(61,109,255,0.45);
display: flex;
align-items: center;
justify-content: center;
}
.fab svg { width: 72px; height: 72px; }
/* Bottom navigation */
.bottom-nav {
position: absolute;
bottom: 120px;
left: 0;
width: 100%;
height: 140px;
display: flex;
align-items: center;
justify-content: space-around;
color: #CFCFCF;
}
.nav-item { display: flex; align-items: center; justify-content: center; }
.nav-check {
width: 84px; height: 84px; background: #3D6DFF; border-radius: 16px;
display: flex; align-items: center; justify-content: center;
}
.nav-icon {
width: 68px; height: 68px;
}
/* Gesture pill */
.gesture-pill {
position: absolute;
bottom: 44px;
left: 50%;
transform: translateX(-50%);
width: 420px;
height: 16px;
background: #C9C9C9;
border-radius: 12px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>12:26</div>
<div class="status-right">
<!-- Simple status icons -->
<svg class="sb-icon" viewBox="0 0 24 24" fill="none">
<circle cx="12" cy="12" r="10" fill="#FFFFFF" opacity="0.2"></circle>
</svg>
<svg class="sb-icon" viewBox="0 0 24 24" fill="none">
<rect x="2" y="6" width="20" height="12" rx="3" stroke="#FFFFFF" stroke-width="2"></rect>
<rect x="4" y="8" width="10" height="8" fill="#FFFFFF"></rect>
</svg>
<svg class="sb-icon" viewBox="0 0 24 24" fill="none">
<rect x="3" y="5" width="18" height="14" rx="3" stroke="#FFFFFF" stroke-width="2"></rect>
<path d="M7 12l3 3 6-6" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<svg class="sb-icon" viewBox="0 0 24 24" fill="none">
<path d="M3 12h18" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"></path>
</svg>
<svg class="sb-icon" viewBox="0 0 24 24" fill="none">
<path d="M18 3l3 3M6 3l-3 3" stroke="#FFFFFF" stroke-width="2" opacity="0.6"></path>
<path d="M20 12a8 8 0 1 1-16 0" stroke="#FFFFFF" stroke-width="2"></path>
</svg>
<svg class="sb-icon" viewBox="0 0 24 24" fill="none">
<path d="M6 20h12a2 2 0 0 0 2-2V6" stroke="#FFFFFF" stroke-width="2"></path>
<path d="M22 6l-2-2" stroke="#FFFFFF" stroke-width="2"></path>
</svg>
</div>
</div>
<!-- Header with hamburger and title -->
<div class="header">
<div class="icon-btn">
<svg width="48" height="48" viewBox="0 0 24 24" fill="none">
<path d="M3 6h18M3 12h18M3 18h18" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
</svg>
</div>
<div class="header-title">Review of Employee Benefits</div>
<div class="icon-btn">
<svg class="kebab" viewBox="0 0 24 24" fill="#FFFFFF">
<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>
<!-- Task card -->
<div class="task-card">
<div class="checkbox"></div>
<div class="task-text">Regular Health Checkup</div>
<div class="task-right">
<div class="label-blue">Tomorrow</div>
<svg class="clock" viewBox="0 0 24 24" fill="none">
<circle cx="12" cy="12" r="9" stroke="#9E9E9E" stroke-width="2"></circle>
<path d="M12 6v6l4 2" stroke="#9E9E9E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
<!-- Floating Action Button -->
<div class="fab">
<svg viewBox="0 0 24 24">
<path d="M12 5v14M5 12h14" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"></path>
</svg>
</div>
<!-- Bottom Navigation -->
<div class="bottom-nav">
<div class="nav-item">
<div class="nav-check">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none">
<path d="M5 13l4 4 10-10" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none">
<rect x="3" y="5" width="18" height="16" rx="3" stroke="#BDBDBD" stroke-width="2"></rect>
<path d="M7 3v4M17 3v4" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round"></path>
<rect x="9" y="12" width="6" height="6" fill="#BDBDBD"></rect>
</svg>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none">
<circle cx="12" cy="12" r="4" fill="#BDBDBD"></circle>
<path d="M12 3v3M12 18v3M3 12h3M18 12h3M5.2 5.2l2.1 2.1M16.7 16.7l2.1 2.1M16.7 7.3l2.1-2.1M5.2 18.8l2.1-2.1" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round"></path>
</svg>
</div>
</div>
<!-- Gesture Pill -->
<div class="gesture-pill"></div>
</div>
</body>
</html>