AndroidCode / code /10163 /10163_6.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
8.65 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Add videos - UI Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #121212; color: #EEEEEE;
font-family: Arial, Helvetica, sans-serif;
}
/* Top bar */
.topbar {
position: absolute; left: 0; top: 0; right: 0;
height: 220px;
padding: 80px 36px 0 36px;
box-sizing: border-box;
}
.topbar .title {
font-size: 44px; font-weight: 600; letter-spacing: 0.2px;
margin-left: 64px; color: #EDEDED;
}
.close-btn {
position: absolute; left: 24px; top: 92px; width: 40px; height: 40px; cursor: pointer;
}
.next-text {
position: absolute; right: 24px; top: 100px;
color: #3ea6ff; font-weight: 600; font-size: 32px; cursor: pointer;
}
.selected-count {
position: absolute; right: 24px; top: 160px; font-size: 24px; color: #BDBDBD;
}
.section-label {
position: absolute; left: 36px; top: 240px;
font-size: 28px; color: #BDBDBD;
}
/* Video list */
.video-list {
position: absolute; left: 0; right: 0; top: 290px; bottom: 0;
padding: 0 24px;
box-sizing: border-box;
}
.video-item {
display: flex; align-items: flex-start;
margin: 20px 12px;
position: relative;
}
.thumb {
position: relative;
width: 360px; height: 202px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 18px;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 22px; text-align: center;
overflow: hidden;
}
.duration {
position: absolute; right: 10px; bottom: 10px;
background: rgba(0,0,0,0.7); color: #fff;
font-size: 22px; padding: 6px 10px; border-radius: 10px;
}
.live-badge {
position: absolute; right: 10px; top: 10px;
background: #ff4e45; color: #fff; font-weight: 600;
font-size: 20px; padding: 6px 10px; border-radius: 10px;
}
.meta {
margin-left: 24px; flex: 1;
}
.meta .title {
font-size: 30px; line-height: 40px; color: #F1F1F1; margin-bottom: 8px;
}
.meta .channel { font-size: 26px; color: #C7C7C7; }
.meta .stats { font-size: 24px; color: #9E9E9E; margin-top: 6px; }
/* Checkbox */
.check {
width: 48px; height: 48px; border: 2px solid #777; border-radius: 6px;
display: flex; align-items: center; justify-content: center;
margin-left: 16px;
}
.check.selected {
background: #3ea6ff; border-color: #3ea6ff;
}
.check svg { width: 28px; height: 28px; }
.check.selected svg path { stroke: #fff; }
/* Bottom sheet modal */
.playlist-modal {
position: absolute; left: 100px; top: 1040px; width: 880px; height: 500px;
background: #262626; border-radius: 22px;
box-shadow: 0 24px 60px rgba(0,0,0,0.6);
padding: 36px;
box-sizing: border-box;
}
.playlist-modal .heading {
font-size: 40px; font-weight: 700; margin-bottom: 30px;
}
.playlist-modal .label {
font-size: 28px; color: #EDEDED; margin-bottom: 16px;
}
.playlist-modal .underline {
height: 2px; background: #555; width: 100%; margin-top: 12px;
}
.privacy-pill {
display: inline-flex; align-items: center; gap: 12px;
background: #3a3a3a; color: #D9D9D9;
border-radius: 14px; padding: 10px 16px;
font-size: 24px; margin-top: 24px;
}
.privacy-pill svg { width: 22px; height: 22px; }
/* Mini player overlay */
.miniplayer {
position: absolute; right: 60px; top: 1320px;
width: 480px; height: 300px;
background: #000; border-radius: 24px; overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.miniplayer .thumb {
width: 92%; height: 88%; border-radius: 14px;
}
/* Gesture bar */
.gesture {
position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
width: 240px; height: 10px; background: rgba(255,255,255,0.85);
border-radius: 10px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="topbar">
<div class="close-btn">
<svg viewBox="0 0 24 24">
<path d="M5 5 L19 19 M19 5 L5 19" stroke="#EDEDED" stroke-width="2.5" stroke-linecap="round" fill="none"/>
</svg>
</div>
<div class="title">Add videos</div>
<div class="next-text">Next</div>
<div class="selected-count">1 video selected</div>
</div>
<div class="section-label">Recently Watched</div>
<div class="video-list">
<!-- Item 1 -->
<div class="video-item">
<div class="thumb">
[IMG: Fashion runway scene]
<div class="duration">8:03</div>
<div class="live-badge">LIVE</div>
</div>
<div class="meta">
<div class="title">Autumn outfits inspo. Milan's fashion life in anticipation of Milan Fashion Week</div>
<div class="channel">MILAN ON TREND</div>
<div class="stats">13K views • 1 day ago</div>
</div>
<div class="check">
<!-- empty (not selected) -->
</div>
</div>
<!-- Item 2 (selected) -->
<div class="video-item">
<div class="thumb">
[IMG: Concert stage]
<div class="duration">4:59</div>
</div>
<div class="meta">
<div class="title">🍁 Luciano Pavarotti, James Brown - It's A Man's Man's Man's World</div>
<div class="channel">Luciano Pavarotti</div>
<div class="stats">92M views • 4 years ago</div>
</div>
<div class="check selected">
<svg viewBox="0 0 24 24">
<path d="M4 12 L10 18 L20 6" stroke="#ffffff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<!-- Item 3 -->
<div class="video-item">
<div class="thumb">
[IMG: Fashion show stage]
<div class="duration">9:01</div>
</div>
<div class="meta">
<div class="title">FIRDAWS | FULL FASHION SHOW</div>
<div class="channel">Fashion Channel</div>
<div class="stats">9.7K views • 2 weeks ago</div>
</div>
<div class="check"></div>
</div>
<!-- Item 4 -->
<div class="video-item">
<div class="thumb">
[IMG: Comedy clip frame]
<div class="duration">1:01</div>
</div>
<div class="meta">
<div class="title">Crazy laugh compilation - Best moments</div>
<div class="channel">DesSoFunny</div>
<div class="stats">9.5M views • 3 weeks ago</div>
</div>
<div class="check"></div>
</div>
<!-- Item 5 -->
<div class="video-item">
<div class="thumb">
[IMG: Toddler at home]
<div class="duration">0:25</div>
</div>
<div class="meta">
<div class="title">Toddler goes into denial when mom tells her it's Football Saturday</div>
<div class="channel">Majically News</div>
<div class="stats">23M views • 9 months ago</div>
</div>
<div class="check"></div>
</div>
<!-- Item 6 -->
<div class="video-item">
<div class="thumb">
[IMG: Duet performance on stage]
<div class="duration">5:06</div>
</div>
<div class="meta">
<div class="title">Luciano Pavarotti &amp; Celine Dion - I Hate You Then I Love You</div>
<div class="channel">glennSuperdude</div>
<div class="stats">29M views • 10 years ago</div>
</div>
<div class="check"></div>
</div>
<!-- Item 7 -->
<div class="video-item">
<div class="thumb">
[IMG: Live concert orchestra]
<div class="duration">3:19</div>
</div>
<div class="meta">
<div class="title">Luciano Pavarotti, Bryan Adams - 'O Sole Mio (Live)</div>
<div class="channel">Luciano Pavarotti</div>
<div class="stats">3.9M views • 4 years ago</div>
</div>
<div class="check"></div>
</div>
</div>
<!-- Bottom sheet modal -->
<div class="playlist-modal">
<div class="heading">New playlist</div>
<div class="label">Title</div>
<div class="underline"></div>
<div class="privacy-pill" style="margin-top: 24px;">
<svg viewBox="0 0 24 24">
<path d="M6 10 V8a6 6 0 1 1 12 0v2 M6 10 H18 V20 H6 Z" stroke="#D9D9D9" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Private
</div>
</div>
<!-- Mini player overlay -->
<div class="miniplayer">
<div class="thumb">[IMG: Sketch artwork]</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html>