| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Video Page Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: #121212; |
| border-radius: 40px; |
| box-shadow: 0 20px 80px rgba(0,0,0,0.5); |
| font-family: Arial, Helvetica, sans-serif; |
| color: #fff; |
| } |
| |
| .status-bar { |
| height: 96px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #fff; |
| font-weight: 600; |
| font-size: 40px; |
| letter-spacing: 0.5px; |
| opacity: 0.95; |
| } |
| .status-icons { |
| display: flex; |
| gap: 26px; |
| align-items: center; |
| } |
| .status-dot { width: 12px; height: 12px; background: #bbb; border-radius: 50%; } |
| |
| .video-wrap { |
| position: relative; |
| width: 100%; |
| height: 640px; |
| background: #E0E0E0; |
| border: 6px solid #d4a500; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| box-sizing: border-box; |
| } |
| .video-wrap .img-label { |
| color: #757575; |
| font-size: 34px; |
| } |
| .control { |
| position: absolute; |
| width: 64px; height: 64px; |
| display: flex; align-items: center; justify-content: center; |
| background: rgba(0,0,0,0.5); |
| border-radius: 50%; |
| } |
| .control svg { width: 36px; height: 36px; fill: #fff; } |
| .ctrl-left { left: 24px; top: 24px; } |
| .ctrl-center { |
| width: 120px; height: 120px; border-radius: 60px; |
| top: 50%; left: 50%; transform: translate(-50%, -50%); |
| background: rgba(0,0,0,0.55); |
| } |
| .ctrl-right { right: 24px; top: 24px; } |
| .ctrl-right-row { |
| position: absolute; right: 24px; top: 24px; |
| display: flex; gap: 18px; align-items: center; |
| } |
| .ctrl-right-row .control { position: static; } |
| .ctrl-bottom-right { |
| position: absolute; right: 24px; bottom: 24px; |
| } |
| .time-row { |
| position: absolute; left: 24px; bottom: 24px; |
| display: flex; align-items: center; gap: 16px; font-size: 28px; |
| } |
| .progress { |
| position: absolute; left: 0; right: 0; bottom: 0; |
| height: 6px; background: #333; |
| } |
| .progress .bar { |
| width: 24%; height: 100%; background: #ff3b3b; position: relative; |
| } |
| .progress .dot { |
| position: absolute; right: -12px; top: 50%; |
| width: 18px; height: 18px; background: #ff3b3b; border-radius: 50%; |
| transform: translateY(-50%); |
| } |
| |
| .ad-row { |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 24px 24px; |
| border-bottom: 1px solid #1f1f1f; |
| background: #121212; |
| } |
| .ad-left { display: flex; align-items: center; gap: 18px; } |
| .ad-thumb { |
| width: 96px; height: 96px; background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; color: #757575; border-radius: 16px; |
| font-size: 24px; padding: 6px; |
| } |
| .ad-text .headline { font-size: 34px; font-weight: 600; } |
| .ad-text .sub { font-size: 26px; color: #aaa; margin-top: 6px; } |
| .ad-actions { display: flex; align-items: center; gap: 16px; } |
| .btn-shop { |
| background: #3ea6ff; color: #06121f; font-weight: 700; |
| padding: 20px 36px; border-radius: 40px; font-size: 30px; border: none; |
| } |
| .circle-btn { |
| width: 64px; height: 64px; border-radius: 32px; background: #232323; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .circle-btn svg { width: 26px; height: 26px; fill: #fff; } |
| |
| .content { |
| padding: 24px; |
| } |
| .title { |
| font-size: 44px; font-weight: 700; line-height: 1.25; margin-top: 6px; |
| } |
| .meta { |
| margin-top: 14px; color: #bbb; font-size: 28px; |
| } |
| |
| .channel-row { |
| margin-top: 28px; |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .channel-left { display: flex; align-items: center; gap: 18px; } |
| .avatar { |
| width: 72px; height: 72px; border-radius: 36px; overflow: hidden; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 20px; |
| } |
| .channel-text { display: flex; align-items: baseline; gap: 12px; } |
| .channel-name { font-size: 34px; font-weight: 700; } |
| .sub-count { font-size: 26px; color: #aaa; } |
| .channel-right { display: flex; align-items: center; gap: 16px; } |
| .mute-pill { |
| padding: 14px 22px; background: #232323; border-radius: 26px; display: flex; |
| align-items: center; gap: 12px; font-size: 26px; color: #ddd; |
| } |
| .mute-pill svg { width: 24px; height: 24px; fill: #ddd; } |
| |
| .actions { |
| margin-top: 26px; display: flex; align-items: center; gap: 22px; |
| } |
| .action-pill { |
| background: #232323; color: #fff; border-radius: 56px; padding: 20px 26px; |
| display: flex; align-items: center; gap: 16px; font-size: 30px; |
| } |
| .action-pill .emoji { font-size: 36px; } |
| .share-pill { padding: 20px 24px; } |
| |
| .comments-card { |
| margin-top: 28px; |
| background: #1a1a1a; border-radius: 28px; padding: 24px; |
| position: relative; |
| } |
| .comments-header { |
| font-size: 36px; font-weight: 700; margin-bottom: 18px; |
| } |
| .comment-row { display: flex; align-items: center; gap: 18px; } |
| .comment-avatar { |
| width: 56px; height: 56px; border-radius: 28px; background: #ff8f00; |
| color: #000; display: flex; align-items: center; justify-content: center; font-weight: 700; |
| } |
| .comment-text { font-size: 30px; color: #ddd; } |
| |
| .floating-mini { |
| position: absolute; |
| right: 36px; |
| top: 1120px; |
| width: 420px; height: 270px; |
| background: #0f0f0f; |
| border-radius: 26px; |
| box-shadow: 0 10px 40px rgba(0,0,0,0.6); |
| padding: 12px; |
| } |
| .floating-mini .thumb { |
| width: 100%; height: 100%; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; border-radius: 18px; |
| } |
| |
| .ad-banner { |
| margin-top: 36px; |
| background: #111; border-radius: 28px; overflow: hidden; |
| position: relative; |
| } |
| .ad-banner .banner-img { |
| width: 100%; height: 760px; |
| background: #E0E0E0; border-top: 1px solid #BDBDBD; border-bottom: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 40px; |
| } |
| .ad-banner .overlay { |
| position: absolute; right: 36px; top: 120px; width: 540px; |
| color: #fff; text-align: right; |
| } |
| .ad-banner .brand { font-size: 80px; font-weight: 800; letter-spacing: 1px; } |
| .ad-banner .tagline { font-size: 44px; margin-top: 18px; } |
| .ad-banner .cta { |
| display: inline-block; margin-top: 24px; background: #e8613c; color: #fff; |
| padding: 20px 24px; border-radius: 8px; font-size: 30px; font-weight: 700; |
| } |
| .ad-banner .bottom-bar { |
| position: absolute; bottom: 0; left: 0; right: 0; |
| background: #162338; padding: 22px 24px; display: flex; justify-content: flex-end; gap: 14px; align-items: center; |
| } |
| .ad-banner .bottom-bar .shop-btn { |
| background: transparent; border: 2px solid #3ea6ff; color: #3ea6ff; |
| padding: 16px 22px; border-radius: 10px; font-size: 30px; font-weight: 700; |
| display: flex; align-items: center; gap: 12px; |
| } |
| .ad-banner .bottom-bar .shop-btn svg { width: 28px; height: 28px; stroke: #3ea6ff; fill: none; } |
| |
| .gesture-bar { |
| position: absolute; left: 50%; transform: translateX(-50%); |
| bottom: 20px; width: 340px; height: 12px; background: #fff; border-radius: 8px; opacity: 0.8; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div>8:25</div> |
| <div class="status-icons"> |
| <svg viewBox="0 0 24 24" width="30" height="30" fill="#fff"><rect x="2" y="6" width="20" height="12" rx="2"></rect><rect x="4" y="8" width="16" height="8" fill="#121212"></rect></svg> |
| <svg viewBox="0 0 24 24" width="30" height="30" fill="#fff"><circle cx="12" cy="12" r="9"></circle><rect x="11" y="6" width="2" height="6" fill="#121212"></rect></svg> |
| <div class="status-dot"></div> |
| <svg viewBox="0 0 24 24" width="30" height="30" fill="#fff"><path d="M7 7h10v10H7z"></path><path d="M3 3h6v2H5v4H3zM15 19h6v-2h-4v-4h-2z"></path></svg> |
| <svg viewBox="0 0 24 24" width="30" height="30" fill="#fff"><path d="M17 7l-5 5-5-5" stroke="#fff" stroke-width="2" fill="none"></path></svg> |
| <svg viewBox="0 0 24 24" width="30" height="30" fill="#fff"><path d="M6 3h12v18H6z"></path><rect x="8" y="6" width="8" height="12" fill="#121212"></rect></svg> |
| </div> |
| </div> |
|
|
| |
| <div class="video-wrap"> |
| <div class="img-label">[IMG: Video frame]</div> |
|
|
| <div class="control ctrl-left"> |
| <svg viewBox="0 0 24 24"><path d="M15 6 L9 12 L15 18" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path></svg> |
| </div> |
|
|
| <div class="control ctrl-center"> |
| <svg viewBox="0 0 24 24"><path d="M8 5 L20 12 L8 19 Z"></path></svg> |
| </div> |
|
|
| <div class="ctrl-right-row"> |
| <div class="control"> |
| <svg viewBox="0 0 24 24"><rect x="3" y="5" width="14" height="12" rx="2"></rect><path d="M3 18c2-2 5-2 7 0" stroke="#fff" stroke-width="2" fill="none"></path></svg> |
| </div> |
| <div class="control" style="border-radius: 10px;"> |
| <svg viewBox="0 0 24 24"><rect x="3" y="6" width="18" height="12" rx="2"></rect></svg> |
| </div> |
| <div class="control"> |
| <svg viewBox="0 0 24 24"><path d="M6 6 L18 18 M6 18 L18 6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path></svg> |
| </div> |
| </div> |
|
|
| <div class="control ctrl-bottom-right"> |
| <svg viewBox="0 0 24 24"><path d="M3 9 V3 H9 M21 9 V3 H15 M3 15 V21 H9 M21 15 V21 H15" stroke="#fff" stroke-width="2" fill="none"></path></svg> |
| </div> |
|
|
| <div class="time-row"> |
| <div style="font-weight:600;">0:11 / 4:59</div> |
| </div> |
|
|
| <div class="progress"> |
| <div class="bar"><div class="dot"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="ad-row"> |
| <div class="ad-left"> |
| <div class="ad-thumb">[IMG: aza logo]</div> |
| <div class="ad-text"> |
| <div class="headline">Aza Fashions: Designer Wear</div> |
| <div class="sub">Ad • Installed</div> |
| </div> |
| </div> |
| <div class="ad-actions"> |
| <button class="btn-shop">Shop</button> |
| <div class="circle-btn"> |
| <svg viewBox="0 0 24 24"><path d="M7 10 L12 15 L17 10" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path></svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="title">Luciano Pavarotti, James Brown - It's A Man's Man's World (Stereo)</div> |
| <div class="meta">92M views • 4y ago • ...more</div> |
|
|
| <div class="channel-row"> |
| <div class="channel-left"> |
| <div class="avatar">[IMG]</div> |
| <div class="channel-text"> |
| <div class="channel-name">Luciano Pavarotti</div> |
| <div class="sub-count">632K</div> |
| </div> |
| </div> |
| <div class="channel-right"> |
| <div class="mute-pill"> |
| <svg viewBox="0 0 24 24"><path d="M4 9h4l5-4v14l-5-4H4z" fill="#ddd"></path><path d="M16 9 L20 13 M20 9 L16 13" stroke="#ddd" stroke-width="2" fill="none"></path></svg> |
| Mute |
| </div> |
| <div class="circle-btn"> |
| <svg viewBox="0 0 24 24"><path d="M7 10 L12 15 L17 10" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path></svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="actions"> |
| <div class="action-pill"><span class="emoji">👍</span><span>987K</span></div> |
| <div class="action-pill"><span class="emoji">👎</span></div> |
| <div class="action-pill share-pill"><span class="emoji">↗</span></div> |
| </div> |
|
|
| |
| <div class="comments-card"> |
| <div class="comments-header">Comments 30K</div> |
| <div class="comment-row"> |
| <div class="comment-avatar">J</div> |
| <div class="comment-text">When you see a Ford...</div> |
| </div> |
| </div> |
|
|
| |
| <div class="floating-mini"> |
| <div class="thumb">[IMG: Art Thumbnail]</div> |
| </div> |
|
|
| |
| <div class="ad-banner"> |
| <div class="banner-img">[IMG: Fashion Ad Banner]</div> |
| <div class="overlay"> |
| <div class="brand">aza</div> |
| <div class="tagline">Timeless Jewels<br>Necklaces, Earrings & more</div> |
| <div class="cta">DOWNLOAD THE APP</div> |
| </div> |
| <div class="bottom-bar"> |
| <div class="shop-btn"> |
| Shop |
| <svg viewBox="0 0 24 24"> |
| <rect x="5" y="5" width="14" height="14" rx="2"></rect> |
| <path d="M9 15 L15 9 M12 9 H15 V12" stroke="#3ea6ff" stroke-width="2" fill="none"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |