File size: 3,680 Bytes
67530d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | <!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> |