File size: 11,932 Bytes
fa881a6 | 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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mobile UI Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #F6F7FB;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #1e1e1e;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 104px;
padding: 0 36px;
box-sizing: border-box;
display: flex;
align-items: flex-end;
justify-content: space-between;
color: #222;
}
.status-left { font-weight: 600; font-size: 36px; padding-bottom: 18px; }
.status-right {
display: flex; gap: 18px; align-items: center; padding-bottom: 16px;
color: #111;
}
.icon-dot { width: 10px; height: 10px; background: #111; border-radius: 50%; opacity: .7; }
/* Top search / header */
.top-area {
position: absolute;
top: 118px;
left: 26px;
right: 26px;
height: 120px;
}
.avatar {
position: absolute;
top: 10px;
left: 0;
width: 92px; height: 92px; border-radius: 50%;
background: #5E483A; color: #fff; display: flex; align-items: center; justify-content: center;
font-weight: 700; font-size: 46px;
}
.avatar .badge {
position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; background: #E53935; border-radius: 50%;
border: 3px solid #5E483A;
}
.search-pill {
position: absolute;
left: 110px; right: 150px; top: 8px; height: 100px;
background: #fff; border-radius: 50px; border: 2px solid #D7D9E0;
box-shadow: 0 6px 0 rgba(0,0,0,0.06) inset, 0 6px 18px rgba(0,0,0,0.08);
display: flex; align-items: center; padding: 0 34px; box-sizing: border-box;
font-size: 36px; color: #8A8C95;
}
.search-pill .search-icon { margin-left: auto; width: 54px; height: 54px; }
.header-actions {
position: absolute; right: 10px; top: 10px; display: flex; gap: 18px; align-items: center;
}
.small-round {
width: 84px; height: 84px; border-radius: 50%; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.08);
display: flex; align-items: center; justify-content: center; border: 1px solid #E5E7EE;
}
/* Feed content (behind sheet) */
.ad-card {
position: absolute; left: 36px; right: 36px; top: 270px; height: 280px;
background: #fff; border-radius: 28px; box-shadow: 0 8px 22px rgba(0,0,0,.06); border: 1px solid #ECEEF5;
}
.ad-label {
position: absolute; top: 20px; left: 24px; padding: 8px 16px; border: 3px solid #27AE60; color: #27AE60;
border-radius: 8px; font-weight: 600; background: #F6FFF9; font-size: 28px;
}
.premium-row {
position: absolute; top: 570px; left: 60px; color: #8B8F9B; font-size: 34px; display: flex; align-items: center; gap: 14px;
}
.premium-row .pchip {
width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#b18cff,#7cc0ff);
display: inline-block;
}
.grid-cards {
position: absolute; top: 640px; left: 36px; right: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.card {
background: #fff; border-radius: 28px; padding: 26px; box-shadow: 0 8px 22px rgba(0,0,0,.06); border: 1px solid #ECEEF5;
height: 360px; box-sizing: border-box;
}
.promo-hero {
width: 100%; height: 210px; background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center; color: #757575; border-radius: 20px;
margin-bottom: 18px; font-size: 30px;
}
.blue-btn {
display: inline-block; background: #3E49F8; color: #fff; border-radius: 38px; padding: 22px 36px; font-weight: 600;
margin-top: 8px; font-size: 30px;
}
.list-item {
display: flex; align-items: center; gap: 22px; padding: 16px 0; font-size: 34px; color: #2c2c2c;
border-bottom: 1px solid #F1F2F6;
}
.list-item:last-child { border-bottom: 0; }
.round-ic {
width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg,#6178ff,#7cc0ff);
display: flex; align-items: center; justify-content: center; color: #fff; font-size: 34px;
}
.tabs {
position: absolute; top: 1040px; left: 36px; right: 36px;
display: flex; justify-content: space-between; align-items: center;
color: #272727; font-weight: 600; font-size: 40px;
}
.tab-center { display: flex; gap: 50px; align-items: center; }
.active { color: #111; position: relative; }
.active::after {
content: ""; position: absolute; left: 0; right: 0; bottom: -12px; margin: auto; width: 64px; height: 8px; border-radius: 6px; background: #3E49F8;
}
.pics-section {
position: absolute; top: 1128px; left: 36px; right: 36px;
}
.pics-title { font-size: 44px; font-weight: 700; margin-bottom: 18px; }
.thumbs { display: flex; gap: 18px; }
.thumb {
width: 240px; height: 160px; background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center; color: #757575; border-radius: 18px;
}
/* Dim overlay */
.overlay {
position: absolute; inset: 0; background: rgba(0,0,0,0.45);
}
/* Bottom sheet */
.sheet {
position: absolute;
left: 0; right: 0; bottom: 0;
height: 980px;
background: #ffffff;
border-top-left-radius: 32px; border-top-right-radius: 32px;
box-shadow: 0 -12px 32px rgba(0,0,0,.25);
}
.drag-indicator {
width: 120px; height: 10px; background: #E4E6ED; border-radius: 8px; margin: 18px auto 16px;
}
.safe-banner {
width: calc(100% - 48px); margin: 6px auto 22px; padding: 22px 24px;
background: #E9FAF0; color: #27AE60; border-radius: 16px; display: flex; align-items: center; gap: 16px;
font-size: 38px; font-weight: 600;
}
.safe-banner svg { width: 44px; height: 44px; }
.options-grid {
width: 100%;
padding: 26px 48px 10px;
box-sizing: border-box;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-row-gap: 70px;
justify-items: center;
}
.option {
width: 280px; text-align: center; position: relative;
}
.circle {
width: 160px; height: 160px; margin: 0 auto 18px; border-radius: 50%;
background: #F6F7FF; display: flex; align-items: center; justify-content: center;
border: 2px solid #E4E6F5;
}
.option svg { width: 70px; height: 70px; }
.option-label { font-size: 36px; color: #111; }
.chip {
position: absolute; right: 40px; top: -6px;
padding: 8px 16px; border-radius: 20px; font-size: 26px; font-weight: 700;
}
.chip.premium {
background: linear-gradient(135deg,#b18cff,#7cc0ff); color: #fff;
}
.chip.new {
left: 18px; right: auto; top: 0;
background: #FF6B6B; color: #fff;
}
.bottom-row {
width: 100%;
box-sizing: border-box;
padding: 40px 48px;
}
.nav-indicator {
position: absolute; left: 50%; transform: translateX(-50%);
bottom: 28px; width: 320px; height: 12px; background: #C9CDD6; border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">9:08</div>
<div class="status-right">
<span class="icon-dot"></span>
<span class="icon-dot"></span>
<span class="icon-dot"></span>
<span style="font-weight:700;">100%</span>
</div>
</div>
<!-- Header with search -->
<div class="top-area">
<div class="avatar">F<div class="badge"></div></div>
<div class="search-pill">
Search files in TeraBox
<svg class="search-icon" viewBox="0 0 24 24" fill="none" stroke="#60636f" stroke-width="2">
<circle cx="10" cy="10" r="7"></circle>
<path d="M15 15 L22 22"></path>
</svg>
</div>
<div class="header-actions">
<div class="small-round">
<svg viewBox="0 0 24 24" width="30" height="30">
<path d="M3 10h18M5 10c1-4 4-6 7-6s6 2 7 6" stroke="#d32f2f" stroke-width="2" fill="none"/>
<path d="M7 10v6a5 5 0 0 0 10 0v-6" stroke="#d32f2f" stroke-width="2" fill="none"/>
</svg>
</div>
<div class="small-round">
<svg viewBox="0 0 24 24" width="30" height="30">
<path d="M6 3v18M18 3v18M3 6h18M3 18h18" stroke="#111" stroke-width="2" fill="none"/>
</svg>
</div>
</div>
</div>
<!-- Feed behind the sheet -->
<div class="ad-card">
<div class="ad-label">Ad</div>
</div>
<div class="premium-row">
<span class="pchip"></span>
<span>Premium Ad-free ></span>
</div>
<div class="grid-cards">
<div class="card">
<div class="promo-hero">[IMG: Premium Super Sale]</div>
<div style="font-size:34px; color:#2c2c2c; margin-top: 6px;">11.11 Super Sale</div>
<span class="blue-btn">View Now</span>
</div>
<div class="card">
<div class="list-item">
<div class="round-ic">📄</div>
<div>Novels</div>
</div>
<div class="list-item">
<div class="round-ic">🖼</div>
<div>Space Analyzer</div>
</div>
<div class="list-item">
<div class="round-ic">📦</div>
<div>Welfare Center</div>
</div>
</div>
</div>
<div class="tabs">
<div class="tab-center">
<div>Welfare Center</div>
<div class="active">Recent</div>
<div>Offline</div>
</div>
<div style="width: 60px; height: 6px; background:#111; border-radius:3px;"></div>
</div>
<div class="pics-section">
<div class="pics-title">Pictures viewed</div>
<div class="thumbs">
<div class="thumb">[IMG]</div>
<div class="thumb">[IMG]</div>
<div class="thumb">[IMG]</div>
<div class="thumb">[IMG]</div>
</div>
</div>
<!-- Dim overlay -->
<div class="overlay"></div>
<!-- Bottom Sheet -->
<div class="sheet">
<div class="drag-indicator"></div>
<div class="safe-banner">
<svg viewBox="0 0 24 24" fill="none" stroke="#27AE60" stroke-width="2">
<path d="M12 3l8 3v6c0 5-4 8-8 9-4-1-8-4-8-9V6l8-3z"></path>
<path d="M8 12l3 3 5-5"></path>
</svg>
<div>Safeguard your data ></div>
</div>
<div class="options-grid">
<div class="option">
<div class="circle">
<svg viewBox="0 0 24 24" stroke="#2B2F95" stroke-width="1.8" fill="none">
<rect x="3" y="5" width="18" height="14" rx="2"></rect>
<path d="M7 13l3-3 4 5 3-3"></path>
<circle cx="9" cy="9" r="1.2" fill="#2B2F95"></circle>
</svg>
</div>
<div class="option-label">Photos</div>
</div>
<div class="option">
<span class="chip premium">Premium</span>
<div class="circle">
<svg viewBox="0 0 24 24" stroke="#2B2F95" stroke-width="1.8" fill="none">
<circle cx="12" cy="12" r="9"></circle>
<path d="M10 9v6l5-3z" fill="#2B2F95" stroke="none"></path>
</svg>
</div>
<div class="option-label">Videos</div>
</div>
<div class="option">
<div class="circle">
<svg viewBox="0 0 24 24" stroke="#2B2F95" stroke-width="1.8" fill="none">
<path d="M7 3h7l5 5v13H7z"></path>
<path d="M14 3v5h5"></path>
<path d="M9 14h6M9 17h6"></path>
</svg>
</div>
<div class="option-label">Documents</div>
</div>
<div class="option" style="grid-column: 1 / span 3;">
<span class="chip new">New</span>
<div class="circle">
<svg viewBox="0 0 24 24" stroke="#2B2F95" stroke-width="1.8" fill="none">
<path d="M4 9l3-3h10l3 3v9a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"></path>
<circle cx="12" cy="13" r="3"></circle>
</svg>
</div>
<div class="option-label">Take a photo and upload</div>
</div>
</div>
<div class="nav-indicator"></div>
</div>
</div>
</body>
</html> |