File size: 4,377 Bytes
ff1f000 | 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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | <!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> |