File size: 8,077 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Post to Picsart - 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: #FAFAFA;
color: #333;
}
/* Status bar */
.status-bar {
height: 100px;
background: #000;
color: #fff;
display: flex;
align-items: center;
padding: 0 32px;
font-weight: 600;
font-size: 38px;
box-sizing: border-box;
justify-content: space-between;
}
.sb-left, .sb-right { display: flex; align-items: center; gap: 24px; }
.dot-icon {
width: 28px; height: 28px; border-radius: 50%; background: #BDBDBD;
}
.wifi-icon, .battery-icon { display: inline-flex; align-items: center; }
.wifi-icon svg, .battery-icon svg { width: 44px; height: 44px; fill: #fff; }
/* Header */
.app-bar {
height: 140px;
background: #FFFFFF;
display: flex;
align-items: center;
box-sizing: border-box;
padding: 0 32px;
border-bottom: 1px solid #eee;
}
.back-btn {
width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin-right: 12px;
}
.title {
font-size: 50px; font-weight: 700; color: #4A4A4A;
}
.skip {
margin-left: auto;
font-size: 44px;
font-weight: 700;
color: #7C4DFF;
}
/* Content */
.content {
padding: 32px;
}
.preview-card {
width: 1016px;
height: 1016px;
background: #fff;
border-radius: 24px;
margin: 24px auto 32px auto;
position: relative;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
display: flex; align-items: center; justify-content: center;
}
.img-placeholder {
width: 90%;
height: 90%;
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #757575;
display: flex; align-items: center; justify-content: center;
text-align: center;
border-radius: 24px;
font-size: 40px;
padding: 24px;
box-sizing: border-box;
}
.gif-chip {
position: absolute;
right: 28px;
bottom: 28px;
width: 140px; height: 140px;
border-radius: 50%;
background: rgba(0,0,0,0.12);
display: flex; align-items: center; justify-content: center;
color: #fff;
font-weight: 800;
letter-spacing: 1px;
}
.gif-chip .play {
position: absolute;
left: 30px;
}
.gif-chip svg { fill: #fff; width: 42px; height: 42px; }
.input-prompt {
font-size: 44px; color: #7A7A7A; margin: 24px 8px;
}
.divider {
height: 1px; background: #E0E0E0; margin: 16px 0 24px 0;
}
.subhead { font-size: 42px; color: #777; margin: 12px 8px; }
.chips { display: flex; gap: 20px; flex-wrap: wrap; padding: 8px 0 24px 0; }
.chip {
background: #EEEEEE;
color: #444;
border-radius: 40px;
padding: 18px 28px;
font-size: 40px;
}
.row {
display: flex; align-items: center; justify-content: space-between;
padding: 24px 8px;
}
.row .label { font-size: 48px; color: #333; display: flex; align-items: center; gap: 16px; }
.info-icon {
width: 48px; height: 48px; border-radius: 50%;
border: 3px solid #111; color: #111; display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
font-size: 34px;
}
/* Toggle */
.toggle.on {
width: 140px; height: 72px; border-radius: 40px; background: #6F2BFF; position: relative;
box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08);
}
.toggle .knob {
position: absolute; top: 8px; right: 8px;
width: 56px; height: 56px; border-radius: 50%;
background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
/* Actions */
.actions {
position: absolute; left: 0; right: 0; bottom: 300px;
display: flex; align-items: center; justify-content: space-between;
padding: 0 56px;
}
.save-link {
color: #7C4DFF; font-size: 50px; font-weight: 800; letter-spacing: 1px;
}
.post-btn {
background: #C400FF;
color: #fff; font-weight: 800; font-size: 48px; letter-spacing: 1px;
border: none; border-radius: 60px; padding: 32px 120px;
box-shadow: 0 6px 14px rgba(196,0,255,0.25);
}
/* Ad banner */
.ad-banner {
position: absolute; left: 0; right: 0; bottom: 100px;
height: 160px; background: #F1F1F1; border-top: 1px solid #E0E0E0;
display: flex; align-items: center; justify-content: space-between;
padding: 0 24px; box-sizing: border-box;
}
.ad-left { display: flex; align-items: center; gap: 20px; }
.ad-thumb {
width: 120px; height: 120px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 16px;
display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
}
.ad-text { display: flex; flex-direction: column; }
.ad-text .title { font-size: 40px; color: #333; font-weight: 800; }
.ad-text .subtitle { font-size: 30px; color: #888; }
.ad-get {
background: #1F7A4A; color: #fff; border: none; border-radius: 16px;
padding: 22px 46px; font-size: 44px; font-weight: 800;
}
/* Gesture bar */
.gesture {
position: absolute; left: 0; right: 0; bottom: 0; height: 100px; background: #000;
display: flex; align-items: center; justify-content: center;
}
.gesture .pill {
width: 220px; height: 10px; background: #fff; border-radius: 10px; opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="sb-left">
<div>4:17</div>
<div class="dot-icon"></div>
<div class="dot-icon"></div>
<div class="dot-icon"></div>
</div>
<div class="sb-right">
<span class="wifi-icon" aria-hidden="true">
<svg viewBox="0 0 24 24"><path d="M12 18a2 2 0 1 0 0.001 3.999A2 2 0 0 0 12 18zm-7-6l1.5 1.5A9 9 0 0 1 17.5 13L19 11a11 11 0 0 0-14 0zM3 8l1.6 1.6a13 13 0 0 1 14.8 0L21 8a15 15 0 0 0-18 0z"/></svg>
</span>
<span class="battery-icon" aria-hidden="true">
<svg viewBox="0 0 24 24"><path d="M16 6h2a2 2 0 0 1 2 2v1h1v6h-1v1a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h10zm-9 3v6h10V9H7z"/></svg>
</span>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="back-btn" aria-label="Back">
<svg viewBox="0 0 24 24" width="48" height="48"><path d="M15 19L8 12l7-7" stroke="#333" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
<div class="title">Post to Picsart</div>
<div class="skip">SKIP</div>
</div>
<!-- Main content -->
<div class="content">
<div class="preview-card">
<div class="img-placeholder">[IMG: Artwork preview with glitter ring]</div>
<div class="gif-chip">
<div class="play"><svg viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg></div>
GIF
</div>
</div>
<div class="input-prompt">Add #hashtag, description, @friends</div>
<div class="divider"></div>
<div class="subhead">Suggested Tags</div>
<div class="chips">
<div class="chip">#nature</div>
<div class="chip">#animal</div>
<div class="chip">#beauty</div>
<div class="chip">#food</div>
</div>
<div class="row">
<div class="label">Free-to-Edit <span class="info-icon">i</span></div>
<div class="toggle on">
<div class="knob"></div>
</div>
</div>
</div>
<!-- Actions -->
<div class="actions">
<div class="save-link">SAVE</div>
<button class="post-btn">POST</button>
</div>
<!-- Ad banner -->
<div class="ad-banner">
<div class="ad-left">
<div class="ad-thumb">Ad</div>
<div class="ad-text">
<div class="subtitle">Play Store</div>
<div class="title">MONOPOLY GO!</div>
</div>
</div>
<button class="ad-get">GET</button>
</div>
<!-- Gesture area -->
<div class="gesture"><div class="pill"></div></div>
</div>
</body>
</html> |