AndroidCode / code /10144 /10144_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
4.38 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Loading Screen</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #212121;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
color: #616161;
font-size: 44px;
letter-spacing: 1px;
}
.status-left {
display: flex;
align-items: center;
gap: 24px;
}
.status-right {
display: flex;
align-items: center;
gap: 28px;
}
.icon {
display: inline-flex;
width: 48px;
height: 48px;
color: #616161;
}
.icon svg {
width: 100%;
height: 100%;
}
/* Loading text */
.loading-wrap {
position: absolute;
top: 260px;
left: 0;
width: 100%;
text-align: center;
}
.loading {
display: inline-block;
font-size: 48px;
color: #212121;
}
/* Back arrow */
.back-btn {
position: absolute;
left: 54px;
top: 520px;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
.back-btn svg {
width: 80%;
height: 80%;
stroke: #2E2E2E;
stroke-width: 12;
fill: none;
}
/* Bottom navigation bar */
.nav-bar {
position: absolute;
left: 0;
bottom: 0;
width: 1080px;
height: 140px;
background: #000000;
display: flex;
align-items: center;
justify-content: center;
}
.gesture-pill {
width: 340px;
height: 16px;
background: #D0D0D0;
border-radius: 12px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<div style="min-width:120px; text-align:left;">3:17</div>
<!-- Silent / notifications placeholders -->
<span class="icon" title="Bell">
<svg viewBox="0 0 24 24">
<path d="M12 22a2.5 2.5 0 0 0 2.5-2.5h-5A2.5 2.5 0 0 0 12 22Zm7-6V11a7 7 0 1 0-14 0v5l-2 2v1h18v-1l-2-2Z" fill="#757575"/>
</svg>
</span>
<span class="icon" title="Do Not Disturb">
<svg viewBox="0 0 24 24">
<rect x="3" y="10.5" width="18" height="3" rx="1.5" fill="#757575"/>
</svg>
</span>
<span class="icon" title="Square">
<svg viewBox="0 0 24 24">
<rect x="4" y="4" width="16" height="16" rx="2" fill="#757575"/>
</svg>
</span>
</div>
<div class="status-right">
<!-- WiFi -->
<span class="icon" title="WiFi">
<svg viewBox="0 0 24 24">
<path d="M12 18.5l2.5 2.5L12 23l-2.5-2 2.5-2.5Z" fill="#757575"/>
<path d="M2.5 9.5A16 16 0 0 1 12 6a16 16 0 0 1 9.5 3.5" stroke="#757575" stroke-width="2.2" fill="none" stroke-linecap="round"/>
<path d="M5.5 12.5A12 12 0 0 1 12 10a12 12 0 0 1 6.5 2.5" stroke="#757575" stroke-width="2.2" fill="none" stroke-linecap="round"/>
<path d="M8.5 15.5A8 8 0 0 1 12 14a8 8 0 0 1 3.5 1.5" stroke="#757575" stroke-width="2.2" fill="none" stroke-linecap="round"/>
</svg>
</span>
<!-- Battery -->
<span class="icon" title="Battery">
<svg viewBox="0 0 32 24">
<rect x="1" y="5" width="26" height="14" rx="2" fill="none" stroke="#757575" stroke-width="2"/>
<rect x="3" y="7" width="18" height="10" rx="1.5" fill="#757575"/>
<rect x="27" y="9" width="4" height="6" rx="1" fill="#757575"/>
</svg>
</span>
</div>
</div>
<!-- Loading -->
<div class="loading-wrap">
<div class="loading">Loading..._</div>
</div>
<!-- Back arrow -->
<div class="back-btn" aria-label="Back">
<svg viewBox="0 0 24 24">
<path d="M15.5 4.5 7 12l8.5 7.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<!-- Bottom Navigation / Gesture bar -->
<div class="nav-bar">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html>