AndroidCode / code /10163 /10163_3.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
10.9 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Playlists UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #121212; color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
}
/* Status bar */
.status-bar {
height: 90px; padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
color: #bbb; font-size: 34px;
}
.status-icons { display: flex; align-items: center; gap: 26px; }
.status-dot { width: 10px; height: 10px; background:#bbb; border-radius:50%; display:inline-block; }
/* Header */
.header {
height: 150px; padding: 0 36px; display: flex; align-items: center; justify-content: space-between;
}
.header-left { display: flex; align-items: center; gap: 24px; }
.title { font-size: 88px; font-weight: 700; letter-spacing: 0.5px; }
.header-right { display: flex; align-items: center; gap: 36px; }
.icon-btn { width: 64px; height: 64px; display: flex; justify-content: center; align-items: center; border-radius: 32px; }
.icon-btn svg { fill: none; stroke: #fff; stroke-width: 2.2; }
/* Sort pill */
.sort-pill {
margin: 8px 0 24px 40px; display: inline-flex; align-items: center; gap: 18px;
background: #1e1e1e; border: 1px solid #2a2a2a; color: #eee;
padding: 20px 26px; border-radius: 40px; font-size: 36px;
}
/* List */
.list { padding: 0 36px; }
.card {
display: flex; align-items: center; gap: 26px;
margin-bottom: 38px;
}
.thumb {
width: 480px; height: 270px; background: #E0E0E0;
border: 1px solid #BDBDBD; color: #757575;
border-radius: 24px; overflow: hidden;
display: flex; justify-content: center; align-items: center; text-align: center;
font-size: 34px;
position: relative;
}
.thumb .overlay {
position: absolute; bottom: 16px; right: 16px;
background: rgba(18,18,18,0.9); color: #fff;
border-radius: 18px; padding: 10px 16px; display: flex; align-items: center; gap: 10px;
font-size: 30px; border: 1px solid #2a2a2a;
}
.details { flex: 1; min-width: 0; }
.title-row { display: flex; align-items: center; justify-content: space-between; }
.card-title { font-size: 48px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.sub { font-size: 32px; color: #bbbbbb; }
.kebab {
width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;
}
.kebab svg { fill: #bbb; }
/* Create playlist button */
.create-btn {
margin: 40px 36px 0; height: 120px; border-radius: 60px;
background: #1e1e1e; border: 1px solid #2a2a2a;
display: flex; justify-content: center; align-items: center;
font-size: 40px; color: #e5e5e5;
}
/* Mini player */
.mini-player {
position: absolute; left: 0; right: 0; bottom: 170px;
height: 170px; background: #0f0f0f; border-top: 1px solid #2a2a2a;
display: flex; align-items: center; padding: 0 30px; gap: 24px;
}
.mini-thumb {
width: 260px; height: 140px; background: #E0E0E0; border: 1px solid #BDBDBD;
color: #757575; display: flex; justify-content: center; align-items: center; font-size: 28px; border-radius: 16px;
}
.mini-info { flex: 1; min-width: 0; }
.mini-title { font-size: 36px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-sub { font-size: 30px; color: #bbb; margin-top: 6px; }
.mini-actions { display: flex; align-items: center; gap: 26px; }
.mini-actions svg { stroke: #fff; fill: none; stroke-width: 2.2; }
/* Bottom nav */
.bottom-nav {
position: absolute; left: 0; right: 0; bottom: 0;
height: 170px; background: #0b0b0b; border-top: 1px solid #2a2a2a;
display: flex; align-items: center; justify-content: space-around;
padding-bottom: 8px;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #dcdcdc; font-size: 28px; }
.nav-item svg { width: 56px; height: 56px; stroke: #dcdcdc; fill: none; stroke-width: 2.2; }
.nav-item .dot {
width: 16px; height: 16px; background: #ff3b3b; border-radius: 50%; position: absolute; margin-top: -6px; margin-left: 36px;
}
/* subtle separators to mimic cards overlapping */
.divider { height: 20px; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>8:26</div>
<div class="status-icons">
<span class="status-dot"></span>
<span class="status-dot"></span>
<span class="status-dot"></span>
<svg width="30" height="30" viewBox="0 0 24 24">
<rect x="1" y="8" width="18" height="12" stroke="#bbb" fill="none" rx="2"></rect>
<path d="M21 12c1.5 1 1.5 3 0 4" stroke="#bbb"></path>
</svg>
<svg width="30" height="30" viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" stroke="#bbb" fill="none"></circle>
<path d="M15 15l6 6" stroke="#bbb"></path>
</svg>
<svg width="30" height="30" viewBox="0 0 24 24">
<path d="M6 5h12M6 12h12M6 19h12" stroke="#bbb"></path>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="header-left">
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<path d="M15 6l-6 6 6 6" stroke="#fff" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div class="title">Playlists</div>
</div>
<div class="header-right">
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<rect x="2" y="8" width="16" height="12" rx="2"></rect>
<path d="M20 12c1 1 1 3 0 4"></path>
</svg>
</div>
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7"></circle>
<path d="M20 20l-4-4"></path>
</svg>
</div>
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#fff" stroke="none"></circle>
<circle cx="12" cy="12" r="2" fill="#fff" stroke="none"></circle>
<circle cx="12" cy="19" r="2" fill="#fff" stroke="none"></circle>
</svg>
</div>
</div>
</div>
<!-- Sort pill -->
<div class="sort-pill">
<span>Recently added</span>
<svg width="32" height="32" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" stroke="#eee" fill="none" stroke-width="2.2"></path>
</svg>
</div>
<!-- Playlist list -->
<div class="list">
<!-- Card 1 -->
<div class="card">
<div class="thumb">
[IMG: Watch later thumbnail]
<div class="overlay">
<svg width="26" height="26" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" stroke="#fff" fill="none"></circle>
<path d="M12 7v6l4 2" stroke="#fff"></path>
</svg>
<span>0</span>
</div>
</div>
<div class="details">
<div class="title-row">
<div class="card-title">Watch later</div>
</div>
<div class="sub">Private</div>
</div>
</div>
<!-- Card 2 -->
<div class="card">
<div class="thumb">[IMG: Fashion runway thumbnail]</div>
<div class="details">
<div class="title-row">
<div class="card-title">wedding dresses and makeup ideas</div>
<div class="kebab">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="4" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="20" r="2"></circle>
</svg>
</div>
</div>
<div class="sub">Private 路 Playlist 路 Updated today</div>
</div>
</div>
<!-- Card 3 -->
<div class="card">
<div class="thumb">[IMG: Abstract painting thumbnail]</div>
<div class="details">
<div class="title-row">
<div class="card-title">Moody</div>
<div class="kebab">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="4" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="20" r="2"></circle>
</svg>
</div>
</div>
<div class="sub">Private 路 Playlist 路 Updated today</div>
</div>
</div>
<!-- Card 4 -->
<div class="card">
<div class="thumb">[IMG: Mixed clips thumbnail]</div>
<div class="details">
<div class="title-row">
<div class="card-title">Liked videos</div>
<div class="kebab">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="4" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="20" r="2"></circle>
</svg>
</div>
</div>
<div class="sub">Private 路 Playlist</div>
</div>
</div>
<div class="create-btn">Create new playlist</div>
</div>
<!-- Mini player -->
<div class="mini-player">
<div class="mini-thumb">[IMG: Music performance thumbnail]</div>
<div class="mini-info">
<div class="mini-title">Luciano Pavarotti, James Brow..</div>
<div class="mini-sub">LucianoPavarottiVEVO</div>
</div>
<div class="mini-actions">
<svg width="62" height="62" viewBox="0 0 24 24">
<path d="M8 5l12 7-12 7z" fill="#fff" stroke="none"></path>
</svg>
<svg width="62" height="62" viewBox="0 0 24 24">
<path d="M5 5l14 14M19 5L5 19"></path>
</svg>
</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item">
<svg viewBox="0 0 24 24">
<path d="M3 11l9-7 9 7M5 10v9h14v-9" ></path>
</svg>
<div>Home</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24">
<path d="M8 3l8 6-8 6 8 6" ></path>
</svg>
<div>Shorts</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10"></circle>
<path d="M12 7v10M7 12h10"></path>
</svg>
<div> </div>
</div>
<div class="nav-item" style="position:relative;">
<svg viewBox="0 0 24 24">
<rect x="3" y="6" width="18" height="12" rx="2"></rect>
<path d="M10 10l6 4-6 4" ></path>
</svg>
<span class="dot"></span>
<div>Subscriptions</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24">
<rect x="4" y="5" width="16" height="14" rx="2"></rect>
<path d="M7 9h10M7 13h10"></path>
</svg>
<div>Library</div>
</div>
</div>
</div>
</body>
</html>