File size: 7,787 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Presentation Viewer Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #0e0e0f;
color: #eaeaea;
}
/* Status bar */
.status-bar {
height: 120px;
background: #121212;
display: flex;
align-items: center;
padding: 0 32px;
box-sizing: border-box;
font-size: 40px;
color: #d7d7d7;
letter-spacing: 0.5px;
}
.status-left { display: flex; align-items: center; gap: 22px; }
.status-icons { display: flex; align-items: center; gap: 18px; margin-left: 20px; }
.dot {
width: 12px; height: 12px; background: #bdbdbd; border-radius: 50%;
display: inline-block;
}
.status-right {
margin-left: auto;
display: flex; align-items: center; gap: 24px;
font-size: 34px; color: #d7d7d7;
}
.tiny-bar {
width: 46px; height: 18px; border-radius: 4px; border: 2px solid #d7d7d7; position: relative;
}
.tiny-bar::after { content: ""; position: absolute; right: -8px; top: 4px; width: 6px; height: 10px; background: #d7d7d7; border-radius: 2px; }
.tiny-fill { width: 70%; height: 100%; background: #d7d7d7; }
/* App bar */
.app-bar {
height: 140px;
background: #1b1b1c;
display: flex;
align-items: center;
padding: 0 24px;
box-sizing: border-box;
border-bottom: 2px solid #2a2a2a;
}
.app-title {
font-size: 52px; font-weight: 600; color: #eaeaea; margin-left: 16px;
}
.app-actions { margin-left: auto; display: flex; align-items: center; gap: 34px; }
.icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.icon-btn svg { width: 48px; height: 48px; fill: none; stroke: #eaeaea; stroke-width: 3; }
/* Content area */
.content {
position: absolute;
top: 260px; /* 120 + 140 */
bottom: 230px; /* leave space for bottom toolbar */
left: 0; right: 0;
overflow: hidden;
background: #000;
}
.slides-wrap {
padding: 20px 16px 0 16px;
box-sizing: border-box;
}
.slide-box {
position: relative;
width: 1048px;
height: 640px;
margin: 0 auto 18px auto;
background: #E0E0E0;
border: 2px solid #BDBDBD;
box-sizing: border-box;
display: flex; align-items: center; justify-content: center;
color: #555;
font-size: 40px;
}
.slide-box.selected {
border: 6px solid #d35400;
box-shadow: inset 0 0 0 4px #6bbec5;
}
.slide-label {
position: absolute; top: 22px; right: 22px;
background: rgba(0,0,0,0.75);
color: #fff; font-size: 36px; padding: 10px 22px; border-radius: 16px;
}
.action-chip-row {
position: absolute; bottom: 24px; left: 24px;
display: flex; gap: 12px;
}
.chip {
background: #2b2b2d;
color: #e9e9e9;
font-size: 36px;
padding: 16px 22px;
border-radius: 6px;
border: 1px solid #3c3c3e;
}
/* Separator line */
.separator {
width: 100%;
height: 6px;
background: #b04115;
margin: 4px 0 18px 0;
}
/* Bottom toolbar */
.bottom-bar {
position: absolute; left: 0; right: 0; bottom: 0;
height: 230px;
background: #1b1b1c;
border-top: 2px solid #2b2b2b;
display: flex; align-items: center; justify-content: space-around;
box-sizing: border-box;
padding-bottom: 36px;
}
.tool {
display: flex; flex-direction: column; align-items: center; gap: 10px;
color: #e0e0e0; font-size: 30px;
}
.tool svg { width: 66px; height: 66px; stroke: #e0e0e0; stroke-width: 3; fill: none; }
.home-indicator {
position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
width: 260px; height: 12px; background: #eaeaea; border-radius: 8px; opacity: 0.85;
}
/* Back arrow icon */
.back { display: flex; align-items: center; gap: 12px; color: #eaeaea; }
.back svg { width: 60px; height: 60px; stroke: #eaeaea; stroke-width: 4; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<div>8:55</div>
<div class="status-icons">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
<div class="status-right">
<!-- WiFi -->
<svg viewBox="0 0 24 24">
<path d="M2 8c5-4 15-4 20 0M5 11c4-3 10-3 14 0M8 14c3-2 7-2 10 0"/>
<circle cx="12" cy="18" r="2" fill="#d7d7d7" stroke="none"></circle>
</svg>
<!-- Battery -->
<div class="tiny-bar"><div class="tiny-fill"></div></div>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="back">
<svg viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" /></svg>
</div>
<div class="app-title">Presentation</div>
<div class="app-actions">
<div class="icon-btn" title="Cloud">
<svg viewBox="0 0 24 24">
<path d="M6 18h10a4 4 0 0 0 0-8 6 6 0 0 0-11.5 2.5A3.5 3.5 0 0 0 6 18z"></path>
</svg>
</div>
<div class="icon-btn" title="More">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#eaeaea" stroke="none"></circle>
<circle cx="12" cy="12" r="2" fill="#eaeaea" stroke="none"></circle>
<circle cx="12" cy="19" r="2" fill="#eaeaea" stroke="none"></circle>
</svg>
</div>
</div>
</div>
<!-- Content area with slide previews -->
<div class="content">
<div class="slides-wrap">
<div class="slide-box">
<div class="slide-label">Slide 1 of 2</div>
<div>[IMG: Slide 1 Preview - "The Hunter"]</div>
<div class="action-chip-row">
<div class="chip">Edit</div>
<div class="chip">Copy</div>
<div class="chip">New Comment</div>
<div class="chip">Share</div>
</div>
</div>
<div class="separator"></div>
<div class="slide-box selected">
<div>[IMG: Slide 2 Preview - Empty template]</div>
</div>
</div>
</div>
<!-- Bottom action bar -->
<div class="bottom-bar">
<div class="tool">
<svg viewBox="0 0 24 24">
<rect x="3" y="4" width="18" height="12" rx="1.5"></rect>
<line x1="8" y1="20" x2="16" y2="20"></line>
<line x1="12" y1="16" x2="12" y2="20"></line>
</svg>
<div>Present</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<rect x="4" y="3" width="16" height="18" rx="1.5"></rect>
<line x1="7" y1="8" x2="17" y2="8"></line>
<line x1="7" y1="12" x2="17" y2="12"></line>
<line x1="7" y1="16" x2="14" y2="16"></line>
</svg>
<div>Notes</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<path d="M12 20l8-8"></path>
<path d="M15 7l2 2"></path>
<rect x="4" y="4" width="10" height="14" rx="1.5"></rect>
</svg>
<div>Edit</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6"></circle>
<line x1="16.5" y1="16.5" x2="21" y2="21"></line>
</svg>
<div>Find</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24">
<circle cx="6" cy="12" r="2"></circle>
<circle cx="18" cy="6" r="2"></circle>
<circle cx="18" cy="18" r="2"></circle>
<line x1="7.6" y1="11" x2="16.2" y2="7"></line>
<line x1="7.6" y1="13" x2="16.2" y2="17"></line>
</svg>
<div>Share</div>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |