File size: 9,823 Bytes
5501681 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>Presentation Preview UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #111; color: #fff;
font-family: "Segoe UI", Arial, sans-serif;
}
/* Top status bar */
.status-bar {
position: absolute; top: 0; left: 0; right: 0;
height: 110px; background: #1f1f1f;
display: flex; align-items: center; justify-content: space-between;
padding: 0 32px; box-sizing: border-box;
color: #eaeaea; font-size: 36px; letter-spacing: 0.5px;
}
.status-right { display: flex; align-items: center; gap: 26px; }
.app-bar {
position: absolute; top: 110px; left: 0; right: 0;
height: 120px; background: #222; border-bottom: 1px solid #2f2f2f;
display: flex; align-items: center; justify-content: space-between;
padding: 0 26px; box-sizing: border-box; color: #d8d8d8;
}
.app-title { font-size: 42px; margin-left: 16px; }
.app-left { display: flex; align-items: center; gap: 16px; }
.icon-btn { width: 80px; height: 80px; display: inline-flex; align-items: center; justify-content: center; }
/* Content area showing slides */
.slides-area {
position: absolute; left: 0; right: 0; top: 230px; bottom: 280px;
padding: 0 24px; box-sizing: border-box; overflow: hidden;
}
.slide {
width: 1032px; margin: 0 auto; background: #5a462f;
border: 4px solid #000; box-sizing: border-box;
}
.slide + .slide { margin-top: 16px; }
.slide.top { height: 720px; }
.slide.edit { height: 860px; border: 3px solid #c96a45; }
.banner {
height: 230px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
}
.panel {
border-right: 2px solid #000; box-sizing: border-box;
display: flex; align-items: center; justify-content: center;
position: relative;
}
.panel:last-child { border-right: none; }
.panel.maroon { background: #6a3b37; }
.panel.pink { background: #c99a95; }
.panel.ribbon { background: #6a3b37; }
.bow {
position: absolute; width: 140px; height: 140px;
opacity: 0.9;
}
.ribbon-line {
position: absolute; left: 50%; top: 0; width: 10px; height: 100%;
background: #c7d6cf;
}
.img-placeholder {
width: 100%; height: 100%;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 34px; text-align: center; padding: 8px;
box-sizing: border-box;
}
.slide-title {
height: 490px; display: flex; align-items: center;
padding-left: 60px; box-sizing: border-box;
font-size: 72px; font-weight: 600; color: #f4f4f4;
}
/* Second slide layout */
.edit-grid {
display: grid; grid-template-columns: 72% 28%; height: calc(100% - 0px);
}
.edit-left { padding: 40px; box-sizing: border-box; position: relative; }
.edit-right { display: grid; grid-template-rows: 1fr 1fr; }
.title-box {
height: 170px; border: 3px solid #eaeaea; color: #eaeaea;
display: flex; align-items: center; padding-left: 24px;
font-size: 54px; box-sizing: border-box; margin-bottom: 26px;
background: rgba(255,255,255,0.04);
}
.text-box {
height: 360px; border: 2px dashed #cfcfcf; color: #cfcfcf;
font-size: 34px; display: flex; align-items: flex-start; padding: 20px;
box-sizing: border-box; background: rgba(255,255,255,0.02);
}
.right-top { background: #6a3b37; position: relative; }
.right-bottom { background: #c99a95; position: relative; }
.dotted-circle {
position: absolute; width: 300px; height: 300px; border-radius: 50%;
left: 50%; top: 50%; transform: translate(-50%, -50%);
border: 2px dashed rgba(220,220,220,0.5);
}
/* Bottom toolbar */
.bottom-bar {
position: absolute; left: 0; right: 0; bottom: 0;
height: 220px; background: #1f1f1f; border-top: 1px solid #2a2a2a;
display: flex; align-items: center; justify-content: space-around;
padding-bottom: 20px;
}
.tool {
width: 160px; height: 160px; display: flex; flex-direction: column;
align-items: center; justify-content: center; gap: 16px; color: #cfcfcf;
}
.tool svg { width: 60px; height: 60px; fill: none; stroke: #cfcfcf; stroke-width: 6; }
.tool span { font-size: 30px; color: #cfcfcf; }
/* Home indicator */
.home-indicator {
position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
width: 320px; height: 12px; background: #e6e6e6; border-radius: 6px; opacity: 0.7;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>12:30</div>
<div class="status-right">
<!-- simple moon icon -->
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M14 3c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9 2.1.2 4.1-.4 5.9-1.7-3.5.5-6.7-1.9-7.6-5.3C10.4 8.7 11.6 5.9 14 3z" fill="#e0e0e0" stroke="none"/>
</svg>
<!-- cast icon -->
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M3 5h18v12H13" />
<path d="M3 13c2 0 4 2 4 4" />
<path d="M3 17c1 0 2 1 2 2" />
</svg>
<!-- play icon -->
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M8 5l10 7-10 7z" fill="#e0e0e0" stroke="none"/>
</svg>
<!-- bullet -->
<svg width="16" height="16"><circle cx="8" cy="8" r="6" fill="#d0d0d0"/></svg>
<!-- wifi -->
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M2 8c4-3 16-3 20 0" />
<path d="M5 12c3-2 11-2 14 0" />
<path d="M8 16c2-1 6-1 8 0" />
<circle cx="12" cy="19" r="1.5" fill="#e0e0e0" stroke="none"/>
</svg>
<!-- battery -->
<svg width="52" height="28" viewBox="0 0 52 28">
<rect x="1" y="4" width="42" height="20" rx="3" ry="3" stroke="#e0e0e0" fill="none" stroke-width="2"/>
<rect x="4" y="7" width="35" height="14" rx="2" ry="2" fill="#e0e0e0"/>
<rect x="45" y="10" width="6" height="8" rx="1" ry="1" fill="#e0e0e0"/>
</svg>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="app-left">
<div class="icon-btn">
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M15 5l-7 7 7 7" stroke="#e8e8e8" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="app-title">Presentation.pptx - Saved</div>
</div>
<div class="icon-btn">
<svg width="44" height="44" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2.2" fill="#e8e8e8"/>
<circle cx="12" cy="12" r="2.2" fill="#e8e8e8"/>
<circle cx="12" cy="19" r="2.2" fill="#e8e8e8"/>
</svg>
</div>
</div>
<!-- Slides area -->
<div class="slides-area">
<!-- Slide 1 -->
<div class="slide top">
<div class="banner">
<div class="panel maroon">
<!-- bow icon -->
<svg class="bow" viewBox="0 0 100 100">
<path d="M20 50c20-30 40 30 60 0M20 50c20 30 40-30 60 0" stroke="#d9cfc7" stroke-width="8" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="panel">
<div class="img-placeholder">[IMG: Hiking gear grid]</div>
</div>
<div class="panel ribbon">
<div class="ribbon-line"></div>
<svg class="bow" viewBox="0 0 100 100">
<path d="M20 50c20-30 40 30 60 0M20 50c20 30 40-30 60 0" stroke="#c7d6cf" stroke-width="8" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="panel pink">
<div class="dotted-circle" style="width: 200px; height: 200px; border-color: rgba(230,230,230,0.6);"></div>
</div>
</div>
<div class="slide-title">Importance of Hiking</div>
</div>
<!-- Slide 2 (edit state) -->
<div class="slide edit">
<div class="edit-grid">
<div class="edit-left">
<div class="title-box">Double tap to add title</div>
<div class="text-box">Double tap to add text</div>
</div>
<div class="edit-right">
<div class="right-top">
<svg class="bow" viewBox="0 0 100 100">
<path d="M20 50c20-30 40 30 60 0M20 50c20 30 40-30 60 0" stroke="#d9cfc7" stroke-width="8" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="right-bottom">
<div class="dotted-circle"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Bottom toolbar -->
<div class="bottom-bar">
<div class="tool">
<svg viewBox="0 0 24 24">
<path d="M3 4h18v14H3z" />
<path d="M8 19v3M16 19v3" />
<path d="M9 8l6 4-6 4" />
</svg>
<span>Present</span>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<rect x="4" y="3" width="16" height="18" rx="2"/>
<path d="M8 7h8M8 12h8M8 17h6" />
</svg>
<span>Notes</span>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<path d="M4 20l6-2 8-8-4-4-8 8-2 6z" />
<path d="M14 6l4 4" />
</svg>
<span>Edit</span>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" />
<path d="M15 15l6 6" />
</svg>
<span>Find</span>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<circle cx="6" cy="12" r="3" />
<circle cx="18" cy="6" r="3" />
<circle cx="18" cy="18" r="3" />
<path d="M8.8 10.8L15.3 7.2M8.8 13.2L15.3 16.8" />
</svg>
<span>Share</span>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |