File size: 5,674 Bytes
98687c3 | 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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Weather App Intro</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #cfd8dc;
border-radius: 32px;
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
/* Top map area */
.map {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 1150px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
font-size: 36px;
letter-spacing: 0.2px;
}
/* Status bar */
.statusbar {
position: absolute;
top: 36px;
left: 36px;
right: 36px;
height: 48px;
display: flex;
align-items: center;
justify-content: space-between;
color: #ffffff;
pointer-events: none;
}
.status-left { display: flex; align-items: center; gap: 28px; }
.status-left .time { font-size: 36px; font-weight: 700; }
.status-icons { display: flex; align-items: center; gap: 26px; }
.statusbar svg { width: 40px; height: 40px; stroke: #ffffff; stroke-width: 3; fill: none; }
.dots svg { stroke: none; fill: #ffffff; }
.status-right { display: flex; align-items: center; gap: 20px; }
.status-right svg { width: 42px; height: 42px; }
/* Bottom panel card */
.panel {
position: absolute;
left: 0;
right: 0;
top: 950px;
height: 1450px;
background: #243C49;
border-top-left-radius: 40px;
border-top-right-radius: 40px;
color: #ffffff;
}
.panel .title {
text-align: center;
font-weight: 800;
font-size: 78px;
line-height: 98px;
margin: 200px 80px 40px;
letter-spacing: 0.2px;
}
.panel .subtitle {
text-align: center;
color: #9fb3bf;
font-size: 36px;
margin-top: 16px;
}
.org {
margin-top: 40px;
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
}
.org .logo {
width: 180px;
height: 180px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
font-size: 22px;
text-align: center;
border-radius: 8px;
padding: 8px;
}
.org .name {
font-size: 44px;
line-height: 54px;
font-weight: 700;
letter-spacing: 0.4px;
text-transform: uppercase;
}
.btn {
width: 940px;
height: 120px;
margin: 120px auto 24px;
background: #22F4A9;
color: #0c2c34;
border-radius: 28px;
display: flex;
justify-content: center;
align-items: center;
font-size: 52px;
font-weight: 800;
letter-spacing: 0.4px;
}
.disclaimer {
width: 940px;
margin: 12px auto 0;
text-align: center;
color: #b9c8d1;
font-size: 30px;
line-height: 42px;
}
.disclaimer .link { color: #d1e4eb; text-decoration: underline; }
.home-indicator {
position: absolute;
left: 50%;
bottom: 40px;
transform: translateX(-50%);
width: 220px;
height: 12px;
background: #d9dee2;
border-radius: 6px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Weather map placeholder -->
<div class="map">[IMG: Weather Map / Wind Heatmap]</div>
<!-- Status bar -->
<div class="statusbar">
<div class="status-left">
<div class="time">10:06</div>
<div class="status-icons">
<!-- dotted grid icon -->
<div class="dots">
<svg viewBox="0 0 24 24">
<circle cx="4" cy="4" r="2"></circle>
<circle cx="12" cy="4" r="2"></circle>
<circle cx="20" cy="4" r="2"></circle>
<circle cx="4" cy="12" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="20" cy="12" r="2"></circle>
<circle cx="4" cy="20" r="2"></circle>
<circle cx="12" cy="20" r="2"></circle>
<circle cx="20" cy="20" r="2"></circle>
</svg>
</div>
<!-- upload arrow icon -->
<svg viewBox="0 0 24 24">
<path d="M12 20V8"></path>
<path d="M6 12l6-6 6 6"></path>
</svg>
<!-- caret up icon -->
<svg viewBox="0 0 24 24">
<path d="M6 15l6-6 6 6"></path>
</svg>
</div>
</div>
<div class="status-right">
<!-- simple bell icon -->
<svg viewBox="0 0 24 24">
<path d="M12 3c-3 0-5 2-5 5v3c0 2-1 3-2 4h14c-1-1-2-2-2-4V8c0-3-2-5-5-5z"></path>
<path d="M9 19c1 1 3 1 4 0"></path>
</svg>
<!-- round user icon -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="8" r="4"></circle>
<path d="M4 21c2-4 6-5 8-5s6 1 8 5"></path>
</svg>
</div>
</div>
<!-- Bottom content panel -->
<div class="panel">
<div class="title">
Best Weather<br>
Forecast App for<br>
Outdoor
</div>
<div class="subtitle">Rated by</div>
<div class="org">
<div class="logo">[IMG: WMO Emblem]</div>
<div class="name">
WORLD<br>
METEOROLOGICAL<br>
ORGANIZATION
</div>
</div>
<div class="btn">Next</div>
<div class="disclaimer">
By proceeding, you confirm that you have read the Privacy Policy,
User Agreement and accepted their terms and conditions.
<span class="link">Click to read.</span>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |