AndroidCode / code /10169 /10169_3.html
yhzheng1031's picture
Add files using upload-large-folder tool
67530d2 verified
raw
history blame
3.68 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>eBay Loading</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 96px;
color: #757575;
font-size: 38px;
}
.status-time {
position: absolute;
left: 36px;
top: 24px;
letter-spacing: 0.5px;
}
.status-right {
position: absolute;
right: 32px;
top: 18px;
display: flex;
align-items: center;
gap: 28px;
}
.status-right span {
font-size: 34px;
color: #757575;
}
.icon {
width: 48px;
height: 48px;
}
/* App bar */
.app-bar {
position: absolute;
top: 108px;
left: 0;
width: 100%;
height: 140px;
display: flex;
align-items: center;
padding: 0 36px;
box-sizing: border-box;
}
.close-btn {
width: 72px;
height: 72px;
margin-right: 24px;
}
.title {
font-size: 64px;
font-weight: 700;
color: #111111;
}
/* Spinner */
.spinner {
position: absolute;
width: 200px;
height: 200px;
left: 440px; /* (1080 - 200) / 2 */
top: 1060px;
border-radius: 50%;
border: 20px solid #3F5AFE;
border-top-color: transparent;
border-right-color: transparent;
box-sizing: border-box;
}
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 320px;
height: 16px;
background: #9E9E9E;
border-radius: 10px;
opacity: 0.8;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-time">2:14</div>
<div class="status-right">
<!-- Do Not Disturb -->
<svg class="icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" fill="none" stroke="#757575" stroke-width="2"></circle>
<line x1="7" y1="12" x2="17" y2="12" stroke="#757575" stroke-width="2" stroke-linecap="round"></line>
</svg>
<!-- Wi-Fi -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M3 10c4.5-4 13.5-4 18 0" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round"></path>
<path d="M6 13c3-2.5 9-2.5 12 0" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round"></path>
<path d="M9 16c1.5-1 4.5-1 6 0" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round"></path>
<circle cx="12" cy="19" r="1.5" fill="#757575"></circle>
</svg>
<!-- Battery -->
<svg class="icon" viewBox="0 0 28 24">
<rect x="2" y="6" width="20" height="12" rx="2" ry="2" fill="none" stroke="#757575" stroke-width="2"></rect>
<rect x="23" y="9" width="3" height="6" fill="#757575"></rect>
<rect x="4" y="8" width="16" height="8" fill="#757575"></rect>
</svg>
<span>100%</span>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<svg class="close-btn" viewBox="0 0 24 24">
<line x1="5" y1="5" x2="19" y2="19" stroke="#111111" stroke-width="2.8" stroke-linecap="round"></line>
<line x1="19" y1="5" x2="5" y2="19" stroke="#111111" stroke-width="2.8" stroke-linecap="round"></line>
</svg>
<div class="title">eBay</div>
</div>
<!-- Loading Spinner -->
<div class="spinner"></div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html>