AndroidCode / code /1017 /1017_3.html
yhzheng1031's picture
Add files using upload-large-folder tool
67530d2 verified
raw
history blame
4.22 kB
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Help & Contact Screen</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Roboto, Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 120px;
padding: 30px 40px;
display: flex;
align-items: center;
justify-content: space-between;
color: #333;
box-sizing: border-box;
font-weight: 600;
}
.sb-left, .sb-right {
display: flex;
align-items: center;
gap: 22px;
}
.sb-time {
font-size: 44px;
letter-spacing: 0.5px;
}
.sb-icon {
width: 36px;
height: 36px;
}
/* Header with close and title */
.header {
position: absolute;
top: 160px;
left: 40px;
right: 40px;
display: flex;
align-items: center;
gap: 28px;
}
.close-btn {
width: 112px;
height: 112px;
border-radius: 56px;
background: #F5F6F7;
display: flex;
align-items: center;
justify-content: center;
}
.title {
font-size: 64px;
font-weight: 800;
color: #111;
letter-spacing: 0.2px;
}
/* Spinner */
.spinner {
position: absolute;
top: 1200px;
left: 480px; /* centered: (1080 - 120)/2 */
width: 120px;
height: 120px;
border-radius: 50%;
border: 16px solid #3366FF;
border-left-color: transparent;
animation: spin 1.2s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 60px;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 14px;
background: #8E8E8E;
border-radius: 8px;
opacity: 0.7;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="sb-left">
<div class="sb-time">10:48</div>
<!-- small status icon (sun/brightness style) -->
<svg class="sb-icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="4" fill="#666"/>
<g stroke="#666" stroke-width="2" stroke-linecap="round">
<line x1="12" y1="1.5" x2="12" y2="5.5"/>
<line x1="12" y1="18.5" x2="12" y2="22.5"/>
<line x1="1.5" y1="12" x2="5.5" y2="12"/>
<line x1="18.5" y1="12" x2="22.5" y2="12"/>
<line x1="4.2" y1="4.2" x2="6.8" y2="6.8"/>
<line x1="17.2" y1="17.2" x2="19.8" y2="19.8"/>
<line x1="17.2" y1="6.8" x2="19.8" y2="4.2"/>
<line x1="4.2" y1="19.8" x2="6.8" y2="17.2"/>
</g>
</svg>
</div>
<div class="sb-right">
<!-- WiFi icon -->
<svg class="sb-icon" viewBox="0 0 24 24">
<path d="M2 9c5.5-5.5 14.5-5.5 20 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
<path d="M5 12c3.8-3.8 10.2-3.8 14 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
<path d="M8 15c2.2-2.2 5.8-2.2 8 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="18" r="1.8" fill="#555"/>
</svg>
<!-- Battery icon -->
<svg class="sb-icon" viewBox="0 0 28 24">
<rect x="2" y="6" width="20" height="12" rx="2" ry="2" fill="none" stroke="#555" stroke-width="2"/>
<rect x="4" y="8" width="16" height="8" fill="#555"/>
<rect x="22.5" y="9" width="3" height="6" rx="1" ry="1" fill="#555"/>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="close-btn">
<svg width="44" height="44" viewBox="0 0 24 24">
<g stroke="#222" stroke-width="2.6" stroke-linecap="round">
<line x1="5" y1="5" x2="19" y2="19"/>
<line x1="19" y1="5" x2="5" y2="19"/>
</g>
</svg>
</div>
<div class="title">Help &amp; Contact</div>
</div>
<!-- Loading Spinner -->
<div class="spinner"></div>
<!-- Home Indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html>