| <!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; color:#222; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #FAFAFA; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 110px; |
| background: #000; |
| color: #fff; |
| display: flex; |
| align-items: center; |
| padding: 0 32px; |
| box-sizing: border-box; |
| font-size: 34px; |
| } |
| .status-left { font-weight: 600; } |
| .status-right { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .dot { |
| width: 22px; height: 22px; background:#fff; border-radius: 50%; opacity: 0.9; |
| } |
| .battery { |
| width: 46px; height: 24px; border:2px solid #fff; border-radius:4px; position: relative; |
| } |
| .battery::after { |
| content:""; position:absolute; right:-6px; top:6px; width:6px; height:12px; background:#fff; border-radius:1px; |
| } |
| |
| |
| .app-bar { |
| position: absolute; |
| top: 110px; |
| left: 0; |
| width: 1080px; |
| height: 140px; |
| background: #F3F3F4; |
| display: flex; |
| align-items: center; |
| padding: 0 28px; |
| box-sizing: border-box; |
| border-bottom: 1px solid #E0E0E0; |
| } |
| .back-btn { |
| width: 72px; height: 72px; display:flex; align-items:center; justify-content:center; margin-right: 16px; |
| } |
| .app-title { |
| font-size: 44px; |
| font-weight: 600; |
| color:#222; |
| } |
| .skip { |
| margin-left: auto; |
| font-size: 36px; |
| color: #6A1B9A; |
| font-weight: 700; |
| } |
| |
| |
| .content { |
| position: absolute; |
| top: 250px; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| padding: 40px 60px 220px; |
| box-sizing: border-box; |
| overflow: hidden; |
| } |
| |
| .image-placeholder { |
| width: 960px; |
| height: 960px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 24px; |
| margin: 10px auto 50px; |
| display:flex; align-items:center; justify-content:center; color:#757575; font-size:36px; text-align:center; |
| } |
| |
| .hint { |
| font-size: 34px; |
| color: #5F6368; |
| margin: 10px 10px 26px 10px; |
| } |
| .divider { |
| height:1px; background:#E0E0E0; margin: 0 10px 30px; |
| } |
| |
| .section-title { |
| font-size: 36px; font-weight: 700; color:#2c2c2c; margin: 0 10px 24px; |
| } |
| .chips { |
| display: flex; gap: 22px; flex-wrap: wrap; padding: 0 10px 40px; |
| } |
| .chip { |
| background:#E9E9EB; color:#333; padding: 18px 26px; border-radius: 36px; font-size: 32px; font-weight: 600; |
| } |
| |
| .row { |
| display:flex; align-items:center; justify-content: space-between; |
| padding: 20px 10px 20px 10px; |
| } |
| .row-left { |
| display:flex; align-items:center; gap: 22px; |
| } |
| .row-title { font-size: 42px; font-weight: 700; } |
| .info-icon { |
| width: 48px; height: 48px; |
| } |
| |
| |
| .toggle { |
| width: 120px; |
| height: 64px; |
| background: #6A00FF; |
| border-radius: 36px; |
| position: relative; |
| box-shadow: inset 0 0 0 2px rgba(0,0,0,0.05); |
| } |
| .toggle::after { |
| content:""; |
| position: absolute; |
| right: 6px; |
| top: 6px; |
| width: 52px; height: 52px; |
| background: #fff; border-radius: 50%; |
| box-shadow: 0 2px 4px rgba(0,0,0,0.2); |
| } |
| |
| .spacer-large { |
| height: 520px; |
| } |
| |
| |
| .overlay { |
| position: absolute; |
| left: 0; |
| top: 250px; |
| width: 100%; |
| height: calc(100% - 250px); |
| background: rgba(0,0,0,0.36); |
| z-index: 5; |
| } |
| |
| |
| .sheet { |
| position: absolute; |
| left: 0; |
| bottom: 0; |
| width: 1080px; |
| background: #fff; |
| border-top-left-radius: 28px; |
| border-top-right-radius: 28px; |
| box-shadow: 0 -10px 30px rgba(0,0,0,0.25); |
| padding: 34px 40px 40px; |
| box-sizing: border-box; |
| z-index: 8; |
| } |
| .sheet-item { |
| display:flex; align-items:center; gap: 28px; |
| padding: 28px 0; |
| border-bottom: 1px solid #EEE; |
| } |
| .sheet-item:last-child { border-bottom: none; } |
| .sheet-icon { |
| width: 84px; height: 84px; display:flex; align-items:center; justify-content:center; |
| } |
| .sheet-texts .title { |
| font-size: 40px; font-weight: 700; color:#333; |
| } |
| .sheet-texts .subtitle { |
| font-size: 32px; color:#6C6C6C; margin-top: 6px; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 18px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 280px; |
| height: 10px; |
| background: #000; |
| border-radius: 6px; |
| opacity: 0.3; |
| z-index: 9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="status-left">4:17</div> |
| <div class="status-right"> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="dot" style="opacity:.7;"></div> |
| <svg width="36" height="28"><circle cx="18" cy="14" r="12" fill="#fff"/></svg> |
| <div class="battery"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="back-btn"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M14 4 L6 12 L14 20" stroke="#333" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="app-title">Post to Picsart</div> |
| <div class="skip">SKIP</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="image-placeholder">[IMG: Edited photo (circular frame with gold speckles)]</div> |
|
|
| <div class="hint">Add #hashtag, description, @friends</div> |
| <div class="divider"></div> |
|
|
| <div class="section-title">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="row-left"> |
| <div class="row-title">Free-to-Edit</div> |
| <svg class="info-icon" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="10" fill="none" stroke="#111" stroke-width="2"/> |
| <rect x="11" y="10" width="2" height="7" fill="#111"/> |
| <circle cx="12" cy="7" r="1.2" fill="#111"/> |
| </svg> |
| </div> |
| <div class="toggle"></div> |
| </div> |
|
|
| <div class="spacer-large"></div> |
| </div> |
|
|
| |
| <div class="overlay"></div> |
|
|
| |
| <div class="sheet"> |
| <div class="sheet-item"> |
| <div class="sheet-icon"> |
| <svg width="68" height="68" viewBox="0 0 24 24"> |
| <path d="M6 15a6 6 0 0 1 11.5-2 4 4 0 1 1 1.5 7H7a4 4 0 0 1-1-7" stroke="#8A2BE2" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <path d="M12 8v7M12 8l-3 3M12 8l3 3" stroke="#8A2BE2" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="sheet-texts"> |
| <div class="title" style="color:#6A1B9A">Upload Privately</div> |
| <div class="subtitle">Use Picsart as a storage</div> |
| </div> |
| </div> |
|
|
| <div class="sheet-item"> |
| <div class="sheet-icon"> |
| <svg width="68" height="68" viewBox="0 0 24 24"> |
| <path d="M6 19h12M12 5v9M12 14l-3-3M12 14l3-3" stroke="#8A2BE2" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="sheet-texts"> |
| <div class="title">Save</div> |
| <div class="subtitle">Save picture on your device</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |