AndroidCode / code /10177 /10177_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
67530d2 verified
raw
history blame
8.98 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Playlist Options Modal</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Inter", Arial, sans-serif; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: #0d0f12;
border-radius: 0;
box-shadow: none;
}
/* Background / underlying content hints */
.top-status {
position: absolute;
top: 24px;
left: 36px;
right: 36px;
height: 48px;
color: #ffffff;
display: flex;
align-items: center;
justify-content: space-between;
opacity: 0.95;
font-size: 38px;
letter-spacing: 0.5px;
}
.status-icons { display: flex; gap: 28px; align-items: center; }
.status-dot {
width: 18px; height: 18px; background: #fff; border-radius: 50%;
}
/* Dimmed cards behind modal */
.bg-card {
position: absolute;
width: 920px;
height: 540px;
left: 80px;
top: 220px;
background: #1f2227;
border-radius: 28px;
opacity: 0.5;
box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}
.bg-card.small {
top: 420px;
width: 720px;
height: 380px;
left: 180px;
opacity: 0.7;
}
/* Back chevron (underlay) */
.back-btn {
position: absolute;
top: 160px;
left: 36px;
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.7;
}
.back-btn svg { width: 40px; height: 40px; stroke: #9aa0a6; stroke-width: 4; fill: none; }
/* Vertical ellipsis (underlay) */
.ellipsis {
position: absolute;
top: 180px;
right: 48px;
width: 16px;
height: 60px;
display: flex;
flex-direction: column;
justify-content: space-between;
opacity: 0.4;
}
.ellipsis span {
width: 12px; height: 12px; background: #9aa0a6; border-radius: 50%;
}
/* Overlay scrim */
.scrim {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.9) 100%);
}
/* Main modal */
.modal {
position: absolute;
left: 40px;
right: 40px;
top: 520px;
background: #2a2d33;
border-radius: 28px;
box-shadow: 0 28px 80px rgba(0,0,0,0.65);
padding: 40px 36px 220px;
color: #e9ecef;
}
.cover {
width: 520px;
height: 520px;
margin: -160px auto 16px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
box-shadow: 0 16px 36px rgba(0,0,0,0.6);
font-size: 32px;
font-weight: 600;
}
.title {
text-align: center;
font-size: 52px;
font-weight: 700;
margin-top: 28px;
letter-spacing: 0.3px;
color: #f2f4f7;
}
.subtitle {
text-align: center;
font-size: 34px;
color: #aeb4bc;
margin-top: 10px;
}
.options {
margin-top: 36px;
display: flex;
flex-direction: column;
gap: 34px;
}
.option {
display: flex;
align-items: center;
gap: 32px;
padding: 10px 4px;
}
.option svg {
width: 44px; height: 44px;
stroke: #d1d5db; stroke-width: 3; fill: none;
}
.option .text { font-size: 40px; color: #e9ecef; }
.option.muted .text { color: #d8dde3; }
.option.play svg { stroke: none; fill: #22c9a1; }
.option.play .text { color: #22c9a1; }
/* Cancel bar */
.cancel-bar {
position: absolute;
left: 40px;
right: 40px;
bottom: 240px;
height: 140px;
background: #2a2d33;
border-radius: 28px;
box-shadow: 0 20px 48px rgba(0,0,0,0.6);
display: flex;
align-items: center;
justify-content: center;
color: #e9ecef;
font-size: 44px;
font-weight: 600;
}
/* Bottom navigation (underlay preview) */
.bottom-nav {
position: absolute;
left: 0;
right: 0;
bottom: 120px;
height: 120px;
display: flex;
justify-content: space-around;
align-items: center;
color: #9aa0a6;
font-size: 32px;
opacity: 0.6;
}
.bottom-nav .active { color: #e9ecef; }
.bottom-nav svg { width: 36px; height: 36px; stroke: currentColor; stroke-width: 3; fill: none; display: block; margin: 0 auto 8px; }
/* Gesture Home bar */
.home-handle {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 320px; height: 14px;
background: #e0e3e7;
border-radius: 16px;
opacity: 0.85;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar (simplified) -->
<div class="top-status">
<div>12:23</div>
<div class="status-icons">
<div class="status-dot" title="signal"></div>
<div class="status-dot" title="mail"></div>
<div class="status-dot" title="youtube"></div>
<div class="status-dot" title="settings"></div>
<div class="status-dot" title="wifi"></div>
<div class="status-dot" title="battery"></div>
</div>
</div>
<!-- Underlay hints -->
<div class="bg-card"></div>
<div class="bg-card small"></div>
<div class="back-btn">
<svg viewBox="0 0 40 40"><path d="M26 6 L10 20 L26 34"/></svg>
</div>
<div class="ellipsis">
<span></span><span></span><span></span>
</div>
<!-- Overlay scrim -->
<div class="scrim"></div>
<!-- Main modal -->
<div class="modal">
<div class="cover">[IMG: Playlist cover with musical note]</div>
<div class="title">Chill List</div>
<div class="subtitle">Just Updated</div>
<div class="options">
<div class="option play">
<svg viewBox="0 0 44 44"><path d="M10 6 L36 22 L10 38 Z"/></svg>
<div class="text">Play Now</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44"><path d="M10 10 L34 34"/><path d="M34 10 L10 34"/></svg>
<div class="text">Remove from Library</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M12 8 C18 8 22 10 22 16 L22 34" />
<circle cx="30" cy="30" r="4" />
<path d="M30 20 L30 40" />
<path d="M22 34 L14 34" />
</svg>
<div class="text">Add to Playlist</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M10 14 H30" />
<path d="M10 22 H26" />
<path d="M10 30 H22" />
<path d="M34 18 V26" />
<path d="M30 22 H38" />
</svg>
<div class="text">Add to Queue</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 28 a10 10 0 0 1 10 -10" />
<path d="M22 32 a14 14 0 0 1 14 -14" />
<circle cx="22" cy="34" r="2" />
</svg>
<div class="text">Playlist Radio</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 8 V28" />
<path d="M16 22 L22 28 L28 22" />
<path d="M12 34 H32" />
</svg>
<div class="text">Download</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 10 V28" />
<path d="M16 16 L22 10 L28 16" />
<path d="M12 30 H32 V36 H12 Z" />
</svg>
<div class="text">Share</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M12 30 L32 10" />
<path d="M30 8 L36 14" />
<path d="M10 32 H18 V36 H10 Z" />
</svg>
<div class="text">Edit Playlist</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 10 L30 34 H14 Z" />
<path d="M18 24 H26" />
</svg>
<div class="text">Rename Playlist</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M14 14 H30 V12 H26 V10 H18 V12 H14 Z" />
<path d="M14 14 V34 H30 V14 Z" />
</svg>
<div class="text">Delete Playlist</div>
</div>
</div>
</div>
<!-- Cancel bar -->
<div class="cancel-bar">Cancel</div>
<!-- Bottom navigation (underlay preview) -->
<div class="bottom-nav">
<div>
<svg viewBox="0 0 36 36"><path d="M6 18 L18 6 L30 18 V30 H22 V22 H14 V30 H6 Z"/></svg>
Home
</div>
<div>
<svg viewBox="0 0 36 36"><circle cx="16" cy="16" r="10"/><path d="M26 26 L32 32"/></svg>
Search
</div>
<div>
<svg viewBox="0 0 36 36"><path d="M8 12 H28"/><path d="M8 18 H24"/><path d="M8 24 H20"/></svg>
For You
</div>
<div class="active">
<svg viewBox="0 0 36 36"><path d="M8 10 H28 V28 H8 Z"/><path d="M8 18 H28"/></svg>
My Library
</div>
<div>
<svg viewBox="0 0 36 36"><path d="M10 26 H26"/><path d="M18 10 L26 18 L10 18 Z"/></svg>
Pro
</div>
</div>
<!-- Home gesture handle -->
<div class="home-handle"></div>
</div>
</body>
</html>