| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>File Manager Share Sheet Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; position: relative; overflow: hidden; |
| background: #F6F7FA; |
| } |
| |
| |
| .status-bar { |
| position: absolute; top: 0; left: 0; right: 0; height: 96px; padding: 0 36px; |
| color: #ffffff; |
| } |
| .status-inner { |
| display: flex; align-items: center; justify-content: space-between; height: 100%; |
| } |
| .status-time { font-size: 42px; font-weight: 600; } |
| .status-icons { display: flex; align-items: center; gap: 26px; } |
| .icon { display: inline-block; } |
| |
| |
| .header { |
| position: absolute; top: 96px; left: 0; right: 0; height: 120px; display: flex; align-items: center; |
| padding: 0 36px; color: #222; background: transparent; |
| } |
| .header .left { color: #3B56F6; font-size: 40px; } |
| .header .title { flex: 1; text-align: center; font-size: 44px; font-weight: 600; color: #111; } |
| .header .right { color: #3B56F6; font-size: 40px; font-weight: 600; } |
| |
| |
| .tabs { |
| position: absolute; top: 216px; left: 0; right: 0; height: 100px; display: flex; align-items: flex-end; |
| padding: 0 36px; gap: 36px; |
| } |
| .tab { font-size: 36px; color: #777; padding-bottom: 22px; } |
| .tab.active { color: #1f4ffb; position: relative; } |
| .tab.active::after { |
| content: ""; position: absolute; bottom: 8px; left: 0; width: 56px; height: 6px; background: #1f4ffb; border-radius: 3px; |
| } |
| |
| |
| .sort-row { |
| position: absolute; top: 316px; left: 0; right: 0; height: 84px; display: flex; align-items: center; |
| padding: 0 36px; gap: 18px; color: #667; font-size: 32px; |
| } |
| |
| |
| .list { |
| position: absolute; top: 400px; left: 0; right: 0; bottom: 980px; overflow: hidden; padding: 0 12px; |
| } |
| .item { |
| display: flex; align-items: center; padding: 26px 24px; border-radius: 16px; margin: 6px 24px; |
| background: #ffffff; |
| } |
| .item.selected { background: #EAF3FF; } |
| .file-icon { |
| width: 88px; height: 88px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 18px; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 20px; text-align: center; margin-right: 28px; |
| } |
| .item .content { flex: 1; } |
| .item .title { font-size: 38px; color: #222; } |
| .item .subtitle { font-size: 30px; color: #8A8A8A; margin-top: 8px; } |
| .select-indicator { |
| width: 52px; height: 52px; border-radius: 50%; border: 3px solid #C9CED6; |
| } |
| .select-indicator.checked { |
| border-color: #2E63F6; background: #2E63F6; box-shadow: inset 0 0 0 10px #2E63F6; |
| } |
| |
| |
| .dim { |
| position: absolute; inset: 0; background: rgba(0,0,0,0.06); |
| } |
| |
| |
| .sheet { |
| position: absolute; left: 0; right: 0; bottom: 0; height: 980px; background: #ffffff; |
| border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0 -8px 24px rgba(0,0,0,0.08); |
| } |
| .sheet .grabber { |
| position: absolute; top: 12px; left: 50%; transform: translateX(-50%); |
| width: 120px; height: 10px; background: #D7DBE3; border-radius: 5px; |
| } |
| .sheet-header { |
| height: 120px; display: flex; align-items: center; justify-content: center; position: relative; color: #222; |
| font-size: 40px; font-weight: 600; |
| } |
| .sheet-header .close { |
| position: absolute; right: 28px; top: 34px; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; |
| } |
| .share-icons, .share-small { |
| display: flex; justify-content: space-between; padding: 0 64px; margin-top: 8px; |
| } |
| .share-item { |
| width: 172px; display: flex; flex-direction: column; align-items: center; |
| } |
| .circle { |
| width: 132px; height: 132px; border-radius: 50%; display: flex; align-items: center; justify-content: center; |
| } |
| .label { margin-top: 18px; font-size: 28px; color: #333; text-align: center; } |
| .circle.green { background: #25D366; } |
| .circle.messenger { background: #0084FF; } |
| .circle.facebook { background: #1877F2; } |
| .circle.telegram { background: #2FA3E5; } |
| .circle.more { background: #ECEFF3; } |
| .circle.gray { background: #F2F4F7; border: 1px solid #E1E6ED; } |
| .sheet-footer { |
| margin: 40px 64px 0; padding: 26px 32px; border-radius: 22px; border: 1px solid #E3E6EA; font-size: 32px; color: #333; display: flex; align-items: center; justify-content: space-between; |
| background: #FAFBFC; |
| } |
| |
| |
| .nav-pill { |
| position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 300px; height: 14px; background: #C9CCD3; border-radius: 7px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="status-inner"> |
| <div class="status-time">8:17</div> |
| <div class="status-icons"> |
| |
| <svg class="icon" width="44" height="44" viewBox="0 0 24 24"> |
| <rect x="2" y="7" width="3" height="10" fill="#fff"/> |
| <rect x="7" y="5" width="3" height="12" fill="#fff" opacity="0.8"/> |
| <rect x="12" y="3" width="3" height="14" fill="#fff" opacity="0.6"/> |
| <rect x="17" y="1" width="3" height="16" fill="#fff" opacity="0.4"/> |
| </svg> |
| <svg class="icon" width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M2 16c3-6 17-6 20 0" stroke="#fff" stroke-width="2" fill="none"/> |
| <path d="M5 12c2-3 12-3 14 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.6"/> |
| <path d="M8 8c2-1 6-1 8 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.4"/> |
| </svg> |
| <svg class="icon" width="50" height="44" viewBox="0 0 28 24"> |
| <rect x="4" y="6" width="18" height="12" rx="2" ry="2" stroke="#fff" stroke-width="2" fill="none"/> |
| <rect x="22" y="9" width="3" height="6" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="left">Cancel</div> |
| <div class="title">1 file(s) selected</div> |
| <div class="right">Select All</div> |
| </div> |
|
|
| |
| <div class="tabs"> |
| <div class="tab active">All</div> |
| <div class="tab">Offline</div> |
| </div> |
|
|
| |
| <div class="sort-row"> |
| <svg width="42" height="42" viewBox="0 0 24 24"> |
| <path d="M4 6h16M4 12h12M4 18h8" stroke="#97A0AD" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| <span>Sort by time</span> |
| </div> |
|
|
| |
| <div class="list"> |
| <div class="item"> |
| <div class="file-icon">[IMG: Vault]</div> |
| <div class="content"> |
| <div class="title">Personal Vault</div> |
| </div> |
| <div class="select-indicator"></div> |
| </div> |
|
|
| <div class="item selected"> |
| <div class="file-icon">[IMG: Folder]</div> |
| <div class="content"> |
| <div class="title">password file</div> |
| <div class="subtitle">2023-06-28 15:09</div> |
| </div> |
| <div class="select-indicator checked"></div> |
| </div> |
|
|
| <div class="item"> |
| <div class="file-icon">[IMG: Cloud]</div> |
| <div class="content"> |
| <div class="title">plant</div> |
| <div class="subtitle">2023-06-28 14:11 74.34KB</div> |
| </div> |
| <div class="select-indicator"></div> |
| </div> |
|
|
| <div class="item"> |
| <div class="file-icon">[IMG: Cloud]</div> |
| <div class="content"> |
| <div class="title">white tree</div> |
| <div class="subtitle">2023-06-28 14:11 256.12KB</div> |
| </div> |
| <div class="select-indicator"></div> |
| </div> |
|
|
| <div class="item"> |
| <div class="file-icon">[IMG: PDF Icon]</div> |
| <div class="content"> |
| <div class="title">TeraBoxQuickStartGuide.pdf</div> |
| <div class="subtitle">2023-06-28 14:08 1.17KB</div> |
| </div> |
| <div class="select-indicator"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="dim"></div> |
|
|
| |
| <div class="sheet"> |
| <div class="grabber"></div> |
| <div class="sheet-header">Share |
| <div class="close"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M6 6l12 12M18 6L6 18" stroke="#99A1AF" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="share-icons" style="margin-top: 10px;"> |
| <div class="share-item"> |
| <div class="circle green"> |
| <svg width="68" height="68" viewBox="0 0 24 24"> |
| <path d="M6 18l2-4a6 6 0 1 1 4 1" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="label">Whatsapp</div> |
| </div> |
| <div class="share-item"> |
| <div class="circle messenger"> |
| <svg width="68" height="68" viewBox="0 0 24 24"> |
| <path d="M5 19l3-3 3 2 4-5 4 3V7a6 6 0 0 0-6-6H9A6 6 0 0 0 3 7v7" fill="#fff" opacity="0.0"/> |
| <path d="M6 15l4-3 3 2 4-5" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="label">Messenger</div> |
| </div> |
| <div class="share-item"> |
| <div class="circle facebook"> |
| <svg width="60" height="60" viewBox="0 0 24 24"> |
| <path d="M14 8h3V5h-3c-2 0-3 1-3 3v2H9v3h2v6h3v-6h3l1-3h-4V8c0-.6.4-1 1-1z" fill="#fff"/> |
| </svg> |
| </div> |
| <div class="label">Facebook</div> |
| </div> |
| <div class="share-item"> |
| <div class="circle telegram"> |
| <svg width="60" height="60" viewBox="0 0 24 24"> |
| <path d="M3 12l18-8-5 16-6-4-3 3 1-5z" fill="#fff"/> |
| </svg> |
| </div> |
| <div class="label">Telegram</div> |
| </div> |
| <div class="share-item"> |
| <div class="circle more"> |
| <svg width="64" height="64" viewBox="0 0 24 24"> |
| <circle cx="6" cy="12" r="2" fill="#7B8799"/> |
| <circle cx="12" cy="12" r="2" fill="#7B8799"/> |
| <circle cx="18" cy="12" r="2" fill="#7B8799"/> |
| </svg> |
| </div> |
| <div class="label">More</div> |
| </div> |
| </div> |
|
|
| |
| <div class="share-small" style="margin-top: 40px;"> |
| <div class="share-item" style="width: 220px;"> |
| <div class="circle gray"> |
| <svg width="56" height="56" viewBox="0 0 24 24"> |
| <path d="M10 14a4 4 0 0 1 0-4l6-6 4 4-6 6a4 4 0 0 1-4 0z" fill="#7B889A"/> |
| <path d="M4 20l6-6" stroke="#7B889A" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="label">Copy link</div> |
| </div> |
| <div class="share-item" style="width: 220px;"> |
| <div class="circle gray"> |
| <svg width="56" height="56" viewBox="0 0 24 24"> |
| <path d="M4 5h16v14H4z" stroke="#7B889A" stroke-width="2" fill="none"/> |
| <path d="M4 5l8 7 8-7" stroke="#7B889A" stroke-width="2" fill="none"/> |
| </svg> |
| </div> |
| <div class="label">Email</div> |
| </div> |
| <div style="width: 220px;"></div> |
| <div style="width: 220px;"></div> |
| <div style="width: 220px;"></div> |
| </div> |
|
|
| <div class="sheet-footer"> |
| <span>Permanent validity, Public link</span> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <path d="M9 6l6 6-6 6" stroke="#9AA0AB" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="nav-pill"></div> |
| </div> |
| </body> |
| </html> |