File size: 11,859 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 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 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Mobile Presentation Editor Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #121212;
color: #EDEDED;
}
/* Generic helpers */
.row { display: flex; align-items: center; }
.space-between { justify-content: space-between; }
.center { justify-content: center; }
.muted { color: #B5B5B5; }
.tiny { font-size: 22px; letter-spacing: 0.5px; }
.pill { width: 200px; height: 8px; background: #FFFFFF; opacity: 0.9; border-radius: 8px; margin: 0 auto; }
/* Status bar */
.status-bar {
height: 110px;
padding: 0 36px;
font-size: 42px;
color: #EDEDED;
}
.status-left, .status-right { gap: 22px; }
.icon-sq { width: 30px; height: 20px; border-radius: 3px; background: #EDEDED22; border: 1px solid #999; }
.dot { width: 10px; height: 10px; background: #EDEDED88; border-radius: 50%; }
/* Title and top toolbar */
.title-area {
height: 90px;
display: flex;
align-items: center;
justify-content: center;
color: #D47C3A;
font-size: 44px;
font-weight: 600;
}
.top-tools {
height: 120px;
padding: 0 40px;
gap: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.tool-btn { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; border-radius: 16px; color: #EDEDED; }
.tool-btn svg { width: 54px; height: 54px; stroke: #EDEDED; fill: none; stroke-width: 3; }
/* Workspace */
.workspace {
height: 1560px; /* computed to fit full 2400 total height */
position: relative;
background: #0E0E0E;
}
/* Slide canvas shown near bottom of workspace */
.slide-wrap {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 40px;
width: 1000px;
height: 562px; /* 16:9 ratio */
background: #2A2A2A;
border: 1px solid #5A5A5A;
}
.slide {
position: relative;
width: 100%;
height: 100%;
background: linear-gradient(90deg, #21342D 0%, #21342D 82%, #BFE5B9 100%);
box-shadow: inset 0 0 0 2px #2F4A41;
}
.slide .left-accent {
position: absolute;
left: 28px;
top: 20px;
bottom: 20px;
width: 6px;
background: #58B3A5;
opacity: 0.9;
border-radius: 3px;
}
.slide .tiny-triangle {
position: absolute;
left: 20px;
top: 54px;
width: 0; height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #58B3A5;
transform: rotate(-90deg);
opacity: 0.9;
}
.title-placeholder {
position: absolute;
left: 160px;
top: 70px;
right: 160px;
height: 86px;
border: 2px dashed #9FB1A8;
color: #FFFFFF;
display: flex; align-items: center; padding-left: 18px;
font-size: 40px;
opacity: 0.9;
}
/* Image placeholder with resize handles */
.img-holder {
position: absolute;
left: 360px;
top: 140px;
width: 280px;
height: 420px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #666;
display: flex; align-items: center; justify-content: center;
text-align: center;
font-size: 24px;
}
.handle {
position: absolute; width: 22px; height: 22px;
background: #FFFFFF; border: 3px solid #9FA3A7; border-radius: 50%;
}
.h-tl { top: -12px; left: -12px; }
.h-tm { top: -12px; left: 50%; transform: translateX(-50%); }
.h-tr { top: -12px; right: -12px; }
.h-ml { top: 50%; left: -12px; transform: translateY(-50%); }
.h-mr { top: 50%; right: -12px; transform: translateY(-50%); }
.h-bl { bottom: -12px; left: -12px; }
.h-bm { bottom: -12px; left: 50%; transform: translateX(-50%); }
.h-br { bottom: -12px; right: -12px; }
/* Notes / Comments header */
.meta-row {
height: 80px;
padding: 0 40px;
display: flex; align-items: center; justify-content: flex-end;
gap: 40px;
background: #121212;
border-top: 1px solid #1F1F1F;
}
.meta-btn {
display: inline-flex; align-items: center; gap: 10px; color: #D7D7D7; font-size: 34px;
}
.meta-btn svg { width: 34px; height: 34px; stroke: #D7D7D7; fill: none; stroke-width: 3; }
/* Filmstrip */
.filmstrip {
height: 240px;
display: flex; align-items: center;
gap: 26px; padding: 0 28px;
background: #101010;
border-top: 1px solid #1E1E1E;
}
.thumb {
width: 300px; height: 180px; background: #2B3B36; position: relative; border: 1px solid #7BA392;
}
.thumb .slide-mini {
width: 100%; height: 100%;
background: linear-gradient(90deg, #21342D 0%, #21342D 82%, #BFE5B9 100%);
}
.thumb .label {
position: absolute; left: 10px; bottom: 10px; color: #EAEAEA; font-size: 22px;
}
.thumb.active { outline: 6px solid #C76828; }
.thumb.active::after {
content: "";
position: absolute; left: 0; right: 0; bottom: -16px; height: 16px; background: #C76828;
}
/* Bottom toolbar */
.bottom-bar {
height: 180px;
background: #161616;
border-top: 1px solid #222;
display: flex; align-items: center; justify-content: center; gap: 40px;
}
.bottom-btn {
width: 120px; height: 120px; display: flex; align-items: center; justify-content: center;
border-radius: 14px; color: #EDEDED;
}
.bottom-btn svg { width: 60px; height: 60px; stroke: #EDEDED; fill: none; stroke-width: 3; }
/* Gesture bar */
.gesture {
height: 20px; display: flex; align-items: center; justify-content: center; background: #121212;
}
</style>
</head>
<body>
<div id="render-target">
<!-- STATUS BAR -->
<div class="status-bar row space-between">
<div class="status-left row">
<div>8:57</div>
<div class="icon-sq"></div>
<div class="icon-sq"></div>
<div class="icon-sq"></div>
<div class="dot"></div>
</div>
<div class="status-right row">
<!-- Wi‑Fi -->
<svg width="38" height="38" viewBox="0 0 24 24" stroke="#EDEDED" fill="none" stroke-width="2">
<path d="M2 8c5-4 15-4 20 0"></path>
<path d="M5 12c4-3 10-3 14 0"></path>
<path d="M8 16c3-2 5-2 8 0"></path>
<circle cx="12" cy="19" r="1.5" fill="#EDEDED"></circle>
</svg>
<!-- Battery -->
<svg width="46" height="38" viewBox="0 0 28 18" stroke="#EDEDED" fill="none" stroke-width="2">
<rect x="1" y="3" width="22" height="12" rx="2"></rect>
<rect x="3" y="5" width="14" height="8" fill="#EDEDED"></rect>
<rect x="23" y="7" width="3" height="6" fill="#EDEDED"></rect>
</svg>
</div>
</div>
<!-- TITLE -->
<div class="title-area">Presentation</div>
<!-- TOP TOOLS -->
<div class="top-tools">
<!-- Check -->
<div class="tool-btn" title="Done">
<svg viewBox="0 0 24 24">
<path d="M4 12l5 5 11-11"></path>
</svg>
</div>
<!-- Pencil/Text -->
<div class="tool-btn" title="Edit">
<svg viewBox="0 0 24 24">
<path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25z"></path>
<path d="M14.06 4.69l3.75 3.75"></path>
</svg>
</div>
<!-- Cloud Upload -->
<div class="tool-btn" title="Sync">
<svg viewBox="0 0 24 24">
<path d="M7 18H6a4 4 0 010-8 5 5 0 019.9-1.5A4 4 0 1118 18h-1"></path>
<path d="M12 13v6"></path>
<path d="M9.5 15.5L12 13l2.5 2.5"></path>
</svg>
</div>
<!-- Search -->
<div class="tool-btn" title="Search">
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7"></circle>
<path d="M21 21l-4.3-4.3"></path>
</svg>
</div>
<!-- Slideshow -->
<div class="tool-btn" title="Slideshow">
<svg viewBox="0 0 24 24">
<rect x="3" y="4" width="18" height="12" rx="2"></rect>
<path d="M10 9l5 3-5 3z" fill="#EDEDED"></path>
</svg>
</div>
<!-- Undo -->
<div class="tool-btn" title="Undo">
<svg viewBox="0 0 24 24">
<path d="M7 7l-4 4 4 4"></path>
<path d="M3 11h9a5 5 0 110 10"></path>
</svg>
</div>
<!-- More (vertical dots) -->
<div class="tool-btn" title="More">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#EDEDED"></circle>
<circle cx="12" cy="12" r="2" fill="#EDEDED"></circle>
<circle cx="12" cy="19" r="2" fill="#EDEDED"></circle>
</svg>
</div>
</div>
<!-- WORKSPACE -->
<div class="workspace">
<div class="slide-wrap">
<div class="slide">
<div class="left-accent"></div>
<div class="tiny-triangle"></div>
<div class="title-placeholder">Double tap to add title</div>
<div class="img-holder">
[IMG: Office desk photo]
<div class="handle h-tl"></div>
<div class="handle h-tm"></div>
<div class="handle h-tr"></div>
<div class="handle h-ml"></div>
<div class="handle h-mr"></div>
<div class="handle h-bl"></div>
<div class="handle h-bm"></div>
<div class="handle h-br"></div>
</div>
</div>
</div>
</div>
<!-- NOTES / COMMENTS -->
<div class="meta-row">
<div class="meta-btn">
<svg viewBox="0 0 24 24">
<rect x="3" y="4" width="18" height="14" rx="2"></rect>
<line x1="7" y1="9" x2="17" y2="9"></line>
<line x1="7" y1="13" x2="14" y2="13"></line>
</svg>
<span>Notes</span>
</div>
<div class="meta-btn">
<svg viewBox="0 0 24 24">
<path d="M21 15a4 4 0 01-4 4H8l-5 3V7a4 4 0 014-4h10a4 4 0 014 4z"></path>
</svg>
<span>Comments</span>
</div>
</div>
<!-- FILMSTRIP -->
<div class="filmstrip">
<div class="thumb">
<div class="slide-mini"></div>
<div class="label">1</div>
</div>
<div class="thumb active">
<div class="slide-mini"></div>
<div class="label">2</div>
</div>
<div class="thumb">
<div class="slide-mini"></div>
<div class="label">+</div>
</div>
</div>
<!-- BOTTOM TOOLBAR -->
<div class="bottom-bar">
<!-- Crop -->
<div class="bottom-btn" title="Crop">
<svg viewBox="0 0 24 24">
<path d="M6 3v12a3 3 0 003 3h12"></path>
<path d="M18 21V9a3 3 0 00-3-3H3"></path>
</svg>
</div>
<!-- Brush -->
<div class="bottom-btn" title="Draw">
<svg viewBox="0 0 24 24">
<path d="M3 17v4h4l11-11-4-4L3 17z"></path>
<path d="M14 6l4 4"></path>
</svg>
</div>
<!-- Image -->
<div class="bottom-btn" title="Pictures">
<svg viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="14" rx="2"></rect>
<circle cx="9" cy="11" r="2"></circle>
<path d="M21 16l-5-5-6 6"></path>
</svg>
</div>
<!-- Layout -->
<div class="bottom-btn" title="Layouts">
<svg viewBox="0 0 24 24">
<rect x="3" y="4" width="18" height="16" rx="2"></rect>
<line x1="12" y1="4" x2="12" y2="20"></line>
<line x1="3" y1="12" x2="21" y2="12"></line>
</svg>
</div>
<!-- Add -->
<div class="bottom-btn" title="Add">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9"></circle>
<line x1="12" y1="8" x2="12" y2="16"></line>
<line x1="8" y1="12" x2="16" y2="12"></line>
</svg>
</div>
<!-- Undo -->
<div class="bottom-btn" title="Undo">
<svg viewBox="0 0 24 24">
<path d="M7 7l-4 4 4 4"></path>
<path d="M3 11h10a5 5 0 110 10"></path>
</svg>
</div>
</div>
<!-- GESTURE BAR -->
<div class="gesture">
<div class="pill"></div>
</div>
</div>
</body>
</html> |